feat:签约合同优化 + 数据处理

This commit is contained in:
shuo.wang
2025-05-08 15:32:40 +08:00
parent 626ce23c3d
commit 11c597a8f0
7 changed files with 66 additions and 11 deletions

View File

@@ -129,4 +129,10 @@ public class PCShopController {
public ResponseResult<Boolean> updateShopStatue(@RequestParam("shopId")Long shopId) {
return ResponseResult.success(shopService.updateShopStatue(shopId));
}
@ApiOperation("数据处理专用 处理shop 省市区")
@GetMapping("/dateHandler")
public ResponseResult<Integer> dateHandler(@RequestParam("pageSize")Integer pageSize,@RequestParam("pageNum")Integer pageNum) {
return ResponseResult.success(shopService.dateHandler(pageNum,pageSize));
}
}