|
|
|
|
8
|
import com.huiju.estateagents.base.ResponseBean;
|
8
|
import com.huiju.estateagents.base.ResponseBean;
|
9
|
import com.huiju.estateagents.center.taUser.entity.TaUser;
|
9
|
import com.huiju.estateagents.center.taUser.entity.TaUser;
|
10
|
import com.huiju.estateagents.center.taUser.mapper.TaUserMapper;
|
10
|
import com.huiju.estateagents.center.taUser.mapper.TaUserMapper;
|
|
|
11
|
+import com.huiju.estateagents.entity.TaPerson;
|
|
|
12
|
+import com.huiju.estateagents.mapper.TaPersonMapper;
|
11
|
import com.huiju.estateagents.property.common.Constant;
|
13
|
import com.huiju.estateagents.property.common.Constant;
|
12
|
import com.huiju.estateagents.property.common.UserElement;
|
14
|
import com.huiju.estateagents.property.common.UserElement;
|
13
|
import com.huiju.estateagents.property.common.base.messagePush;
|
15
|
import com.huiju.estateagents.property.common.base.messagePush;
|
|
|
|
|
17
|
import com.huiju.estateagents.property.service.ITaUserVerifyService;
|
19
|
import com.huiju.estateagents.property.service.ITaUserVerifyService;
|
18
|
import lombok.extern.slf4j.Slf4j;
|
20
|
import lombok.extern.slf4j.Slf4j;
|
19
|
import org.apache.commons.lang3.StringUtils;
|
21
|
import org.apache.commons.lang3.StringUtils;
|
|
|
22
|
+import org.apache.poi.ss.formula.functions.T;
|
20
|
import org.springframework.beans.factory.annotation.Autowired;
|
23
|
import org.springframework.beans.factory.annotation.Autowired;
|
21
|
import org.springframework.stereotype.Service;
|
24
|
import org.springframework.stereotype.Service;
|
22
|
import org.springframework.transaction.annotation.Transactional;
|
25
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
45
|
@Autowired
|
48
|
@Autowired
|
46
|
private TaUserMapper taUserMapper;
|
49
|
private TaUserMapper taUserMapper;
|
47
|
|
50
|
|
|
|
51
|
+ @Autowired
|
|
|
52
|
+ private TaPersonMapper taPersonMapper;
|
|
|
53
|
+
|
48
|
@Autowired
|
54
|
@Autowired
|
49
|
private TpBuildingOwnerInfoMapper tpBuildingOwnerInfoMapper;
|
55
|
private TpBuildingOwnerInfoMapper tpBuildingOwnerInfoMapper;
|
50
|
|
56
|
|
|
|
|
|
292
|
public ResponseBean getToAuditNotApproved(Integer userVerifyId) {
|
298
|
public ResponseBean getToAuditNotApproved(Integer userVerifyId) {
|
293
|
ResponseBean responseBean = new ResponseBean();
|
299
|
ResponseBean responseBean = new ResponseBean();
|
294
|
TaUserVerify taUserVerify = taUserVerifyMapper.selectById(userVerifyId);
|
300
|
TaUserVerify taUserVerify = taUserVerifyMapper.selectById(userVerifyId);
|
295
|
- TaUser currentUser = taUserMapper.selectById(taUserVerify.getPersonId());
|
|
|
296
|
- taUserVerify.setLoginName(currentUser.getLoginName());
|
|
|
|
|
301
|
+ TaPerson currentUser = taPersonMapper.selectById(taUserVerify.getPersonId());
|
|
|
302
|
+ taUserVerify.setLoginName(currentUser.getName());
|
297
|
|
303
|
|
298
|
// 开始查询 业主
|
304
|
// 开始查询 业主
|
299
|
TaUserVerify userVerify = taUserVerifyMapper.selectWxCommunityAndAddressAndRoleId(taUserVerify.getOrgId(), taUserVerify.getPhaseId(), taUserVerify.getBuildingId(), taUserVerify.getUnitId(), taUserVerify.getLevelId(), taUserVerify.getRoomNoId());
|
305
|
TaUserVerify userVerify = taUserVerifyMapper.selectWxCommunityAndAddressAndRoleId(taUserVerify.getOrgId(), taUserVerify.getPhaseId(), taUserVerify.getBuildingId(), taUserVerify.getUnitId(), taUserVerify.getLevelId(), taUserVerify.getRoomNoId());
|