Commit 5b6a6daa authored by tangwei's avatar tangwei

修改bug

parent 3fa04836
......@@ -44,9 +44,9 @@ public class RedissonConfig {
.setScanInterval(5000) // 集群状态扫描间隔时间,单位是毫秒
.setTimeout(30000)
//主节点线程池数量
.setMasterConnectionPoolSize(10)
.setMasterConnectionPoolSize(20)
//从节点线程池数量
.setSlaveConnectionPoolSize(30)
.setSlaveConnectionPoolSize(20)
.setIdleConnectionTimeout(10000)
.setSlaveConnectionMinimumIdleSize(20)
.setMasterConnectionMinimumIdleSize(20)
......
......@@ -1538,7 +1538,7 @@ public class ExcelServiceImpl {
fireExpertsServiceImpl.saveBatch(excelEntityList);
}
@Async
private void excelImportDutyPerson(MultipartFile multipartFile, String dutyType,String uuidString) {
public void excelImportDutyPerson(MultipartFile multipartFile, String dutyType,String uuidString) {
try {
ImportDutyPerson(multipartFile,dutyType);
if(redisUtils.hasKey(uuidString)){
......
......@@ -2729,8 +2729,10 @@
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
<where>
<where>
and wec.industry_code = 2
<if test="dto.code!=null and dto.code!=''">
and wesp.code = #{dto.code}
</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