数据处理

This commit is contained in:
shuo.wang
2025-07-14 17:15:06 +08:00
parent 87eeb43a77
commit bd8d91fdb8
5 changed files with 18 additions and 6 deletions

View File

@@ -177,4 +177,11 @@ public class DataHandlerController {
public ResponseResult<Boolean> franchiseFeeDateHandler(@RequestParam("pageSize") Integer pageSize, @RequestParam("pageNum") Integer pageNum){
return ResponseResult.success(dataHandlerServer.franchiseFeeDateHandler(pageSize,pageNum));
}
@ApiOperation("门店数据初始化")
@GetMapping("/dataHandlerCreateStore")
public ResponseResult<Boolean> dataHandlerCreateStore(){
dataHandlerServer.dataHandlerCreateStore();
return ResponseResult.success(true);
}
}