Commit a9b2b122 authored by 李秀明's avatar 李秀明

查询条件修改

parent 56cbcc5b
...@@ -3119,7 +3119,7 @@ public class OrgUsrServiceImpl extends BaseService<OrgUsrDto, OrgUsr, OrgUsrMapp ...@@ -3119,7 +3119,7 @@ public class OrgUsrServiceImpl extends BaseService<OrgUsrDto, OrgUsr, OrgUsrMapp
wrapper.likeRight(OrgUsr::getBizOrgCode,bizOrgCode); wrapper.likeRight(OrgUsr::getBizOrgCode,bizOrgCode);
wrapper.isNotNull(OrgUsr::getBizOrgCode); wrapper.isNotNull(OrgUsr::getBizOrgCode);
wrapper.eq(BaseEntity::getIsDelete,false); wrapper.eq(BaseEntity::getIsDelete,false);
wrapper.eq(OrgUsr::getParentId, id); // wrapper.eq(OrgUsr::getParentId, id);
wrapper.eq(OrgUsr::getBizOrgType, CommonConstant.BIZ_ORG_TYPE_PERSON); wrapper.eq(OrgUsr::getBizOrgType, CommonConstant.BIZ_ORG_TYPE_PERSON);
return this.baseMapper.selectList(wrapper).stream().collect(Collectors.toList()); return this.baseMapper.selectList(wrapper).stream().collect(Collectors.toList());
} }
......
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