|
@ -91,6 +91,16 @@ public class IcPartyMemberPayRecordDetailController { |
|
|
return new Result(); |
|
|
return new Result(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 党员缴费记录导出 |
|
|
|
|
|
* |
|
|
|
|
|
* @param tokenDto |
|
|
|
|
|
* @param params |
|
|
|
|
|
* @param response |
|
|
|
|
|
* @return void |
|
|
|
|
|
* @author LZN |
|
|
|
|
|
* @date 2022/6/28 9:32 |
|
|
|
|
|
*/ |
|
|
@PostMapping("export") |
|
|
@PostMapping("export") |
|
|
public void export(@LoginUser TokenDto tokenDto, @RequestBody Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
public void export(@LoginUser TokenDto tokenDto, @RequestBody Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
// List<IcPartyMemberPayRecordDetailDTO> list = icPartyMemberPayRecordDetailService.list(params);
|
|
|
// List<IcPartyMemberPayRecordDetailDTO> list = icPartyMemberPayRecordDetailService.list(params);
|
|
@ -99,6 +109,7 @@ public class IcPartyMemberPayRecordDetailController { |
|
|
params.put("customerId",tokenDto.getCustomerId()); |
|
|
params.put("customerId",tokenDto.getCustomerId()); |
|
|
params.put("isPage",false); |
|
|
params.put("isPage",false); |
|
|
params.put("pageSize",NumConstant.TEN_THOUSAND); |
|
|
params.put("pageSize",NumConstant.TEN_THOUSAND); |
|
|
|
|
|
params.put("userId",tokenDto.getUserId()); |
|
|
|
|
|
|
|
|
ExcelWriter excelWriter = null; |
|
|
ExcelWriter excelWriter = null; |
|
|
AtomicInteger i = new AtomicInteger(1); |
|
|
AtomicInteger i = new AtomicInteger(1); |
|
|