Commit 52016072 authored by chenzhao's avatar chenzhao

代扣优化项 批量生成 批量上传

parent 28a3dcc9
......@@ -83,4 +83,6 @@ public class IcbcWithholdDto extends BaseDto {
@ApiModelProperty(value = "付款信息")
private List<HygfIcbcRecordDTO> recordDTOS;
private List<Long> ids;
}
......@@ -183,9 +183,9 @@ public class IcbcWithholdController extends BaseController {
@ApiOperation(httpMethod = "POST",value = " 聚富通代扣信息文件生成", notes = " 聚富通代扣信息文件生成")
@PostMapping(value = "/fileGenerations")
@Transactional
public ResponseModel fileGenerationS(@RequestBody List<Long> ids ) throws Exception {
public ResponseModel fileGenerationS(@RequestBody IcbcWithholdDto model ) throws Exception {
icbcWithholdServiceImpl.fileGenerations(ids);
icbcWithholdServiceImpl.fileGenerations(model.getIds());
return CommonResponseNewUtil.success();
}
......
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