移动端-证照审批列表

This commit is contained in:
guohb
2024-04-28 11:41:25 +08:00
parent 21be2bd332
commit 57eafeaf4f

View File

@@ -36,4 +36,18 @@ public class ApplyLicenseController {
return ResponseResult.success(applyLicenseService.getDefault(shopId)); return ResponseResult.success(applyLicenseService.getDefault(shopId));
} }
/**
*
* @param id
* @param status 0通过 1不通过
* @return
*/
@PostMapping(path = "/examine")
@ApiOperation("证照审批列表")
public ResponseResult licenseExamine(@RequestParam("id") Long shopId,
@RequestParam("status") Integer status,
@RequestParam("result") String result) {
return ResponseResult.success(applyLicenseService.licenseExamine(shopId,status,result));
}
} }