Commit ad406c6e authored by “xuhd”'s avatar “xuhd”

问题80、复评申请列表复评审核页面,审核通过时,备注不必录。审核不通过时,备注必录。

parent 60750bac
...@@ -80,7 +80,7 @@ public class ReTaskController { ...@@ -80,7 +80,7 @@ public class ReTaskController {
*/ */
@RequestMapping("/disableExamine") @RequestMapping("/disableExamine")
public Result disableExamine(String applyId, String checkName, Short applyStatus, String checkRemark) { public Result disableExamine(String applyId, String checkName, Short applyStatus, String checkRemark) {
if (StringUtils.isBlank(applyId) || StringUtils.isBlank(checkName) || StringUtils.isBlank(checkRemark) || null == applyStatus) { if (StringUtils.isBlank(applyId) || StringUtils.isBlank(checkName) || null == applyStatus) {
return Result.failed("查询参数错误"); return Result.failed("查询参数错误");
} }
reTaskService.disableExamine(applyId, checkName, applyStatus, checkRemark); reTaskService.disableExamine(applyId, checkName, applyStatus, checkRemark);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment