数据处理代码
This commit is contained in:
@@ -166,4 +166,15 @@ public class DataHandlerController {
|
||||
public ApiResponse<Boolean> batchStatusRefreshYls(@RequestBody @Validated BatchStatusRefreshDTO batchStatusRefreshDTO) {
|
||||
return ApiResponse.success(dataHandlerServer.batchStatusRefreshYls(batchStatusRefreshDTO));
|
||||
}
|
||||
|
||||
@ApiOperation("处理加盟费阶段")
|
||||
@GetMapping("/franchiseFeeStageDateHandler")
|
||||
public ResponseResult<Boolean> franchiseFeeStageDateHandler(){
|
||||
return ResponseResult.success(dataHandlerServer.franchiseFeeStageDateHandler());
|
||||
}
|
||||
@ApiOperation("处理加盟费缴费信息历史数据")
|
||||
@GetMapping("/franchiseFeeDateHandler")
|
||||
public ResponseResult<Boolean> franchiseFeeDateHandler(@RequestParam("pageSize") Integer pageSize, @RequestParam("pageNum") Integer pageNum){
|
||||
return ResponseResult.success(dataHandlerServer.franchiseFeeDateHandler(pageSize,pageNum));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user