feat():添加导出接口
parent
ea46221f09
commit
3b0ff9f189
|
@ -179,7 +179,7 @@ public class OrderPayCustomerController {
|
||||||
@Log(title = "导出支付", businessType = BusinessType.EXPORT)
|
@Log(title = "导出支付", businessType = BusinessType.EXPORT)
|
||||||
@RequiresPermissions("pay:customer:export")
|
@RequiresPermissions("pay:customer:export")
|
||||||
@PostMapping("/export")
|
@PostMapping("/export")
|
||||||
public void export (HttpServletResponse response, @Validated @RequestBody CustomerListReq customerListReq) {
|
public void export (HttpServletResponse response,CustomerListReq customerListReq) {
|
||||||
log.info("进行导出操作");
|
log.info("进行导出操作");
|
||||||
List<CustomerResp> customerRespList = orderPayCustomerService.selectList(customerListReq);
|
List<CustomerResp> customerRespList = orderPayCustomerService.selectList(customerListReq);
|
||||||
ExcelUtil<CustomerResp> util = new ExcelUtil<CustomerResp>(CustomerResp.class);
|
ExcelUtil<CustomerResp> util = new ExcelUtil<CustomerResp>(CustomerResp.class);
|
||||||
|
|
Loading…
Reference in New Issue