Browse Source

1.处理手机号反显问题

yuanliang 2 years ago
parent
commit
12e5d152a6

+ 0 - 3
cooleshow-user/user-biz/src/main/java/com/yonge/cooleshow/biz/dal/service/impl/StudentServiceImpl.java

@@ -92,9 +92,6 @@ public class StudentServiceImpl extends ServiceImpl<StudentDao, Student> impleme
     @Autowired
     private SysConfigService sysConfigService;
 
-    @Autowired
-    private ImGroupService imGroupService;
-
     @Override
     public StudentVo detail(Long userId) {
         return baseMapper.detail(userId);

+ 1 - 1
cooleshow-user/user-biz/src/main/resources/config/mybatis/TenantUnbindRecordMapper.xml

@@ -6,7 +6,6 @@
         t.id_ AS id
         , t.tenant_id_ AS tenantId
         , t.user_id_ AS userId
-        , t.phone_ AS phone
         , t.user_type_ AS userType
         , t.unbind_reason_ AS unbindReason
         , t.status_ AS status
@@ -27,6 +26,7 @@
         ,ti.username_ as tenantUserName
         ,ti.phone_ as tenantUserPhone
         ,su.username_ as userName
+        ,su.phone_ as phone
         FROM tenant_unbind_record t
         LEFT JOIN tenant_info ti ON ti.id_ = t.tenant_id_
         LEFT JOIN sys_user su on su.id_ = t.user_id_