|
@@ -99,9 +99,6 @@ public class BuildingOwnerInfoServiceImpl extends ServiceImpl<TpBuildingOwnerInf
|
99
|
99
|
@Autowired
|
100
|
100
|
private MessageMapper messageMapper;
|
101
|
101
|
|
102
|
|
- @Autowired
|
103
|
|
- private TpTransactionMapper tpTransactionMapper;
|
104
|
|
-
|
105
|
102
|
@Autowired
|
106
|
103
|
private TaPersonMapper taPersonMapper;
|
107
|
104
|
|
|
@@ -122,6 +119,16 @@ public class BuildingOwnerInfoServiceImpl extends ServiceImpl<TpBuildingOwnerInf
|
122
|
119
|
|
123
|
120
|
// 分页查询
|
124
|
121
|
List<TpBuildingOwnerInfo> list = tpBuildingOwnerInfoMapper.selectListByParams(page,tpBuildingOwnerInfo);
|
|
122
|
+ list.forEach(e -> {
|
|
123
|
+ TaUserVerify taUserVerify = taUserVerifyMapper.selectById(e.getUserVerifyId());
|
|
124
|
+ if (null != taUserVerify){
|
|
125
|
+ TaSysRole taSysRole = taSysRoleMapper.selectByPrimaryKey(taUserVerify.getRoleId());
|
|
126
|
+ if (null != taSysRole){
|
|
127
|
+ e.setRoleName(taSysRole.getDescription());
|
|
128
|
+ }
|
|
129
|
+ }
|
|
130
|
+
|
|
131
|
+ });
|
125
|
132
|
|
126
|
133
|
Map<String, Object> retMap = Maps.newHashMap();
|
127
|
134
|
|
|
@@ -866,7 +873,7 @@ public class BuildingOwnerInfoServiceImpl extends ServiceImpl<TpBuildingOwnerInf
|
866
|
873
|
taUserVerifyMapper.deleteById(e);
|
867
|
874
|
|
868
|
875
|
// 作废话题
|
869
|
|
- tpTransactionMapper.invalidByUuidAndUuidType(e, "app");
|
|
876
|
+// tpTransactionMapper.invalidByUuidAndUuidType(e, "app");
|
870
|
877
|
|
871
|
878
|
});
|
872
|
879
|
|