Browse Source

社区网格治理人员提交

master
lichao 2 years ago
parent
commit
712b0f63a3
  1. 2
      epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/service/impl/CustomerCommunityManageUserServiceImpl.java
  2. 2
      epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/service/impl/CustomerGridManageUserServiceImpl.java

2
epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/service/impl/CustomerCommunityManageUserServiceImpl.java

@ -90,7 +90,7 @@ public class CustomerCommunityManageUserServiceImpl extends BaseServiceImpl<Cust
LambdaQueryWrapper<CustomerCommunityManageUserEntity> wrapper = new LambdaQueryWrapper<>(); LambdaQueryWrapper<CustomerCommunityManageUserEntity> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(CustomerCommunityManageUserEntity::getId, communityId) wrapper.eq(CustomerCommunityManageUserEntity::getCommunityId, communityId)
.eq(CustomerCommunityManageUserEntity::getType, type); .eq(CustomerCommunityManageUserEntity::getType, type);
List<CustomerCommunityManageUserEntity> entityList = baseDao.selectList(wrapper); List<CustomerCommunityManageUserEntity> entityList = baseDao.selectList(wrapper);

2
epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/service/impl/CustomerGridManageUserServiceImpl.java

@ -98,7 +98,7 @@ public class CustomerGridManageUserServiceImpl extends BaseServiceImpl<CustomerG
public List<CustomerGridManageUserDTO> listForCommnity(String gridId, String type) { public List<CustomerGridManageUserDTO> listForCommnity(String gridId, String type) {
LambdaQueryWrapper<CustomerGridManageUserEntity> wrapper = new LambdaQueryWrapper<>(); LambdaQueryWrapper<CustomerGridManageUserEntity> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(CustomerGridManageUserEntity::getId, gridId) wrapper.eq(CustomerGridManageUserEntity::getGridId, gridId)
.eq(CustomerGridManageUserEntity::getType, type); .eq(CustomerGridManageUserEntity::getType, type);
List<CustomerGridManageUserEntity> entityList = baseDao.selectList(wrapper); List<CustomerGridManageUserEntity> entityList = baseDao.selectList(wrapper);

Loading…
Cancel
Save