Commit 9785ccac authored by fangxinjiang's avatar fangxinjiang

紧急联系人查询接口调整

parent 34723e95
......@@ -140,6 +140,9 @@ public class TEmpContactInfoServiceImpl extends ServiceImpl<TEmpContactInfoMappe
if (Common.isNotNull(idList)) {
wrapper.in(TEmpContactInfo::getId, idList);
}
if (Common.isNotNull(searchVo.getEmpIdcard())){
wrapper.eq(TEmpContactInfo::getEmpIdcard,searchVo.getEmpIdcard());
}
if (searchVo.getLimitStart() >= 0 && searchVo.getLimitEnd() > 0) {
wrapper.last(" limit " + searchVo.getLimitStart() + "," + searchVo.getLimitEnd());
}
......
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