Commit 158a6764 authored by hongguangwu's avatar hongguangwu

Merge remote-tracking branch 'origin/MVP1.6.6' into MVP1.6.6

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