导出接口

This commit is contained in:
shuo.wang
2025-06-09 10:28:56 +08:00
parent dd07bca48d
commit 7d88be8a1d
8 changed files with 60 additions and 2 deletions

View File

@@ -62,4 +62,10 @@ public class ExportController {
public ResponseResult zxjpOpenShopReport(@RequestBody FranchiseReportRequest request) {
return ResponseResult.success(exportService.exportZxjpOpenShopReport(request, CurrentUserHolder.getUser()));
}
@PostMapping("/zxjpOpenShopReportPage")
@ApiOperation("正新鸡排开店")
public ResponseResult zxjpOpenShopReportPage(@RequestBody FranchiseReportRequest request) {
return ResponseResult.success(exportService.exportZxjpOpenShopReportPage(request, CurrentUserHolder.getUser()));
}
}