Commit a411ea41 authored by gaoyingwei's avatar gaoyingwei

修改 导入

parent 107fc75f
......@@ -246,7 +246,7 @@ public class FkqkServiceImpl implements IFkqkService
else if (StringUtils.isEmpty(fkqk.getFkRs()))
fkqk.setFailure("涉及封控人数不能为空");
else if (fkqk.getFkTime() == null)
fkqk.setFailure("涉及封控人数不能为空");
fkqk.setFailure("封控时间不能为空");
failureList.add(fkqk);
}
}
......
......@@ -220,13 +220,13 @@ public class YcsbServiceImpl implements IYcsbService
}
}
} else {
if (StringUtils.isNotEmpty(ycsb.getUserName()))
if (StringUtils.isEmpty(ycsb.getUserName()))
ycsb.setFailure("姓名不能为空");
else if (StringUtils.isNotEmpty(ycsb.getCardNo()))
else if (StringUtils.isEmpty(ycsb.getCardNo()))
ycsb.setFailure("身份证号不能为空");
else if (StringUtils.isNotEmpty(ycsb.getArea()))
else if (StringUtils.isEmpty(ycsb.getArea()))
ycsb.setFailure("居住地所在区不能为空");
else if (null != ycsb.getSbDate())
else if (null == ycsb.getSbDate())
ycsb.setFailure("时间不能为空");
failureList.add(ycsb);
}
......
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