feat:直营店开店

This commit is contained in:
苏竹红
2025-09-01 16:36:44 +08:00
parent 1d2fbab0a1
commit f9c2222f10
7 changed files with 45 additions and 5 deletions

View File

@@ -35,6 +35,11 @@ public class PCFranchiseFeeController {
return ResponseResult.success(franchiseFeeService.update(request));
}
@ApiOperation("缴费阶段跳过")
@GetMapping("/stageSkip")
public ResponseResult<Boolean> stageSkip(@RequestParam("shopId") Long shopId) {
return ResponseResult.success(franchiseFeeService.stageSkip(shopId));
}
@ApiOperation("基本信息查询")
@GetMapping("/getDetail")