getInfo添加互联网pc端,获取是否是经办端人员,是给直播权限
This commit is contained in:
@@ -56,4 +56,6 @@ public interface AppUserMapper extends BaseMapper<AppUser>
|
||||
void batchAddUser(List<AppUser> list);
|
||||
|
||||
AppUser getAppUserBase(@Param("idCard") String idCard);
|
||||
|
||||
Integer getIsJbdUser(@Param("idCard") String idCard);
|
||||
}
|
||||
|
||||
@@ -99,4 +99,6 @@ public interface IAppUserService
|
||||
public void updateAppUserWgyEncrypt();
|
||||
|
||||
public AppUser getAppUserBase(String idCard);
|
||||
|
||||
Integer getIsJbdUser(String idCard);
|
||||
}
|
||||
|
||||
@@ -1129,4 +1129,9 @@ public class AppUserServiceImpl extends ServiceImpl<AppUserMapper,AppUser> imple
|
||||
public AppUser getAppUserBase(String idCard){
|
||||
return appUserMapper.getAppUserBase(idCard);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getIsJbdUser(String idCard) {
|
||||
return appUserMapper.getIsJbdUser(idCard);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,6 +15,8 @@ public class StringUtil {
|
||||
/*1101(求职者)、1102(招聘者)、1103(网格员)、1104(内部工作者)*/
|
||||
public static final Long COMPANY_ADMIN_ROLE_KEY = 1102L;
|
||||
|
||||
public static final Long QZZ_ADMIN_ROLE_KEY = 1101L;
|
||||
|
||||
/************************移动端角色开始***************************/
|
||||
/**
|
||||
* 移动端-企业用户
|
||||
|
||||
Reference in New Issue
Block a user