Commit bd05fbe9 authored by 18310373984@163.com's avatar 18310373984@163.com

修改失能申请增加去除空格

parent 6b8980a9
...@@ -335,6 +335,7 @@ public class DisableController { ...@@ -335,6 +335,7 @@ public class DisableController {
if (chDisableApply.getMedicalType() == null) { if (chDisableApply.getMedicalType() == null) {
return Result.failed("医保类型不能为空!"); return Result.failed("医保类型不能为空!");
} }
chDisableApply.setRealName(chDisableApply.getRealName().trim());//增加失能人员姓名去除空格
disableService.updateDisable(chDisableApply); disableService.updateDisable(chDisableApply);
return Result.success(); return Result.success();
} }
......
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