签约相关

This commit is contained in:
guohb
2024-04-29 11:39:29 +08:00
parent 7bd55c9592
commit 3b888eef40
4 changed files with 69 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
package com.cool.store.controller.webb;
import com.cool.store.request.AuditFranchiseFeeRequest;
import com.cool.store.request.FranchiseFeeRequest;
import com.cool.store.request.SubmitLicenseRequest;
import com.cool.store.response.FranchiseFeeResponse;
@@ -33,4 +34,12 @@ public class PCFranchiseFeeController {
public ResponseResult<FranchiseFeeResponse> getDetail(@RequestParam("shopId") Long shopId) {
return ResponseResult.success(franchiseFeeService.getDetail(shopId));
}
@ApiOperation("缴纳加盟费/保证金审核接口")
@PostMapping("/audit")
public ResponseResult auditFranchiseFee(@RequestBody AuditFranchiseFeeRequest request) {
return ResponseResult.success(franchiseFeeService.auditFranchiseFee(request));
}
}