|
|
@ -76,14 +76,14 @@ public class ApplyController extends BaseController {
|
|
|
|
@ApiOperation("审核提交")
|
|
|
|
@ApiOperation("审核提交")
|
|
|
|
@GetMapping(value = "/audit/{applyId}")
|
|
|
|
@GetMapping(value = "/audit/{applyId}")
|
|
|
|
public AjaxResult audit(@PathVariable String applyId) {
|
|
|
|
public AjaxResult audit(@PathVariable String applyId) {
|
|
|
|
return success(applyInfoListManager.audit(applyId));
|
|
|
|
return toAjax(applyInfoListManager.audit(applyId));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("申请退回")
|
|
|
|
@ApiOperation("申请退回")
|
|
|
|
@GetMapping(value = "/applyBack")
|
|
|
|
@GetMapping(value = "/applyBack")
|
|
|
|
public AjaxResult applyBack(@RequestParam String applyId,
|
|
|
|
public AjaxResult applyBack(@RequestParam String applyId,
|
|
|
|
@RequestParam(required = false) String applyMsg) {
|
|
|
|
@RequestParam(required = false) String applyMsg) {
|
|
|
|
return success(applyInfoListManager.applyBack(applyId,applyMsg));
|
|
|
|
return toAjax(applyInfoListManager.applyBack(applyId,applyMsg));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|