Commit 64f2f018 authored by xinglei's avatar xinglei

*)修改判断写反问题

parent 36ede852
......@@ -1675,7 +1675,7 @@ public class LatentDangerServiceImpl implements ILatentDangerService {
}
private InputItem getInputItem(Long itemId) {
return ValidationUtil.isEmpty(itemId) ? iInputItemDao.getOne(itemId) : null;
return !ValidationUtil.isEmpty(itemId) ? iInputItemDao.getOne(itemId) : null;
}
private String getPhotoUrls(InputCheckDto inputCheckDto) {
......
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