update
This commit is contained in:
@@ -61,8 +61,6 @@ public class AppUserServiceImpl extends ServiceImpl<AppUserMapper,AppUser> imple
|
|||||||
if (appUser == null) {
|
if (appUser == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
//处理身份证脱敏
|
|
||||||
appUser.setIdCard(StringUtil.desensitizeIdCard(appUser.getIdCard()));
|
|
||||||
if(StringUtils.isNotEmpty(appUser.getJobTitleId())){
|
if(StringUtils.isNotEmpty(appUser.getJobTitleId())){
|
||||||
List<String> list = Arrays.asList(appUser.getJobTitleId().split(","));
|
List<String> list = Arrays.asList(appUser.getJobTitleId().split(","));
|
||||||
List<Long> collect = list.stream().map(Long::valueOf).collect(Collectors.toList());
|
List<Long> collect = list.stream().map(Long::valueOf).collect(Collectors.toList());
|
||||||
@@ -95,6 +93,8 @@ public class AppUserServiceImpl extends ServiceImpl<AppUserMapper,AppUser> imple
|
|||||||
List<File> files=fileMapper.selectFileList(file);
|
List<File> files=fileMapper.selectFileList(file);
|
||||||
appUser.setFileList(files);
|
appUser.setFileList(files);
|
||||||
}
|
}
|
||||||
|
//处理身份证脱敏
|
||||||
|
appUser.setIdCard(StringUtil.desensitizeIdCard(appUser.getIdCard()));
|
||||||
return appUser;
|
return appUser;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -291,6 +291,7 @@ public class SsoService {
|
|||||||
company.setIndustry(object.getString("entIndustry"));
|
company.setIndustry(object.getString("entIndustry"));
|
||||||
company.setRegisteredAddress(object.getString("entRegisteredAddress"));
|
company.setRegisteredAddress(object.getString("entRegisteredAddress"));
|
||||||
company.setNature(object.getString("entType"));
|
company.setNature(object.getString("entType"));
|
||||||
|
company.setDescription(object.getString("entIntro"));
|
||||||
// company.setScale(object.getString("entSize"));
|
// company.setScale(object.getString("entSize"));
|
||||||
companyService.insertCompany(company);
|
companyService.insertCompany(company);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user