Commit 8668b87d authored by huyuchen's avatar huyuchen

缴费库导入重复修改

parent 9ad0081e
...@@ -13,8 +13,8 @@ import java.util.concurrent.TimeUnit; ...@@ -13,8 +13,8 @@ import java.util.concurrent.TimeUnit;
public class YFSocialImportThreadPoolExecutor extends ThreadPoolExecutor { public class YFSocialImportThreadPoolExecutor extends ThreadPoolExecutor {
private static final int CORE_POOL_SIZE = 8; private static final int CORE_POOL_SIZE = 30;
private static final int MAX_POOL_SIZE = 12; private static final int MAX_POOL_SIZE = 30;
private static final long KEEP_ALIVE_TIME = 15; private static final long KEEP_ALIVE_TIME = 15;
private static final int CAPACITY = 1024; private static final int CAPACITY = 1024;
......
...@@ -149,7 +149,7 @@ public class TPaymentInfoController { ...@@ -149,7 +149,7 @@ public class TPaymentInfoController {
@PostMapping("/importListAdd") @PostMapping("/importListAdd")
@PreAuthorize("@pms.hasPermission('social_tpaymentinfo_batchImport')") @PreAuthorize("@pms.hasPermission('social_tpaymentinfo_batchImport')")
public R<List<ErrorMessage>> importListAdd(@RequestBody MultipartFile file, @RequestParam String random) { public R<List<ErrorMessage>> importListAdd(@RequestBody MultipartFile file, @RequestParam String random) {
return tPaymentInfoService.importSocialDiy(file.getInputStream(), random); return tPaymentInfoService.importSocialDiy(file.getInputStream());
} }
/** /**
......
...@@ -49,7 +49,7 @@ public interface TPaymentInfoService extends IService<TPaymentInfo> { ...@@ -49,7 +49,7 @@ public interface TPaymentInfoService extends IService<TPaymentInfo> {
* @param inputStream * @param inputStream
* @return * @return
*/ */
R<List<ErrorMessage>> importSocialDiy(InputStream inputStream, String random); R<List<ErrorMessage>> importSocialDiy(InputStream inputStream);
/** /**
* 批量新增缴费库-合肥三险 * 批量新增缴费库-合肥三险
......
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