Commit dae1a864 authored by chenzhao's avatar chenzhao

修改bug 责任人不能为空

parent b3fc840a
......@@ -1459,6 +1459,9 @@ public class PointController extends AbstractBaseController {
if (ObjectUtils.isEmpty(user)) {
return CommonResponseUtil.failure("用户session过期");
}
if (ObjectUtils.isEmpty(pointNewVo.getChargePersonId())) {
return CommonResponseUtil.failure("责任人不能为空");
}
try {
Point point = new Point();
BeanUtils.copyProperties(pointNewVo,point);
......
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