Commit 5b6a6daa authored by tangwei's avatar tangwei

修改bug

parent 3fa04836
...@@ -44,9 +44,9 @@ public class RedissonConfig { ...@@ -44,9 +44,9 @@ public class RedissonConfig {
.setScanInterval(5000) // 集群状态扫描间隔时间,单位是毫秒 .setScanInterval(5000) // 集群状态扫描间隔时间,单位是毫秒
.setTimeout(30000) .setTimeout(30000)
//主节点线程池数量 //主节点线程池数量
.setMasterConnectionPoolSize(10) .setMasterConnectionPoolSize(20)
//从节点线程池数量 //从节点线程池数量
.setSlaveConnectionPoolSize(30) .setSlaveConnectionPoolSize(20)
.setIdleConnectionTimeout(10000) .setIdleConnectionTimeout(10000)
.setSlaveConnectionMinimumIdleSize(20) .setSlaveConnectionMinimumIdleSize(20)
.setMasterConnectionMinimumIdleSize(20) .setMasterConnectionMinimumIdleSize(20)
......
...@@ -1538,7 +1538,7 @@ public class ExcelServiceImpl { ...@@ -1538,7 +1538,7 @@ public class ExcelServiceImpl {
fireExpertsServiceImpl.saveBatch(excelEntityList); fireExpertsServiceImpl.saveBatch(excelEntityList);
} }
@Async @Async
private void excelImportDutyPerson(MultipartFile multipartFile, String dutyType,String uuidString) { public void excelImportDutyPerson(MultipartFile multipartFile, String dutyType,String uuidString) {
try { try {
ImportDutyPerson(multipartFile,dutyType); ImportDutyPerson(multipartFile,dutyType);
if(redisUtils.hasKey(uuidString)){ if(redisUtils.hasKey(uuidString)){
......
...@@ -2729,8 +2729,10 @@ ...@@ -2729,8 +2729,10 @@
LEFT JOIN wl_stock_detail wsd ON wsd.equipment_specific_id = wesp.id LEFT JOIN wl_stock_detail wsd ON wsd.equipment_specific_id = wesp.id
LEFT JOIN wl_warehouse_structure wws ON wsd.warehouse_structure_id = wws.id LEFT JOIN wl_warehouse_structure wws ON wsd.warehouse_structure_id = wws.id
<where>
<where>
and wec.industry_code = 2
<if test="dto.code!=null and dto.code!=''"> <if test="dto.code!=null and dto.code!=''">
and wesp.code = #{dto.code} and wesp.code = #{dto.code}
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment