移动端-证照审批列表
This commit is contained in:
@@ -36,4 +36,18 @@ public class ApplyLicenseController {
|
||||
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));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user