feat:backPayFeeStage

This commit is contained in:
苏竹红
2025-11-26 10:05:21 +08:00
parent 1ca3994821
commit 7d2b2f40e4
3 changed files with 22 additions and 4 deletions

View File

@@ -55,6 +55,12 @@ public class PCSignFranchiseController {
return ResponseResult.success(signFranchiseService.rePay(shopId));
}
@ApiOperation("回到缴费阶段")
@PostMapping("/backPayFeeStage")
public ResponseResult<Boolean> backPayFeeStage(@RequestBody @Validated AuditApproveRequest request) {
return ResponseResult.success(signFranchiseService.backPayFeeStage(request, CurrentUserHolder.getUser()));
}
@ApiOperation("数据处理,全部设置为新签")
@GetMapping("/dateHandle")
public ResponseResult<Integer> dateHandle() {