feat():添加导出接口

master
zhang chengzhi 2024-08-10 08:37:53 +08:00
parent ea46221f09
commit 3b0ff9f189
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ public class OrderPayCustomerController {
@Log(title = "导出支付", businessType = BusinessType.EXPORT)
@RequiresPermissions("pay:customer:export")
@PostMapping("/export")
public void export (HttpServletResponse response, @Validated @RequestBody CustomerListReq customerListReq) {
public void export (HttpServletResponse response,CustomerListReq customerListReq) {
log.info("进行导出操作");
List<CustomerResp> customerRespList = orderPayCustomerService.selectList(customerListReq);
ExcelUtil<CustomerResp> util = new ExcelUtil<CustomerResp>(CustomerResp.class);