|
@@ -59,25 +59,28 @@ public class UserCompanyServiceImpl extends ServiceImpl<UserCompanyMapper, UserC
|
|
|
userCompany.setCompanyId(depart.getId());
|
|
|
userCompany.setCompanyName(depart.getDepartName());
|
|
|
String departName = depart.getDepartName();
|
|
|
- if(!Check.isNull(departName)){
|
|
|
- if(departName.trim().contains("北京汇创思拓数字科技有限公司")){
|
|
|
+ if (!Check.isNull(departName)) {
|
|
|
+ if (departName.trim().contains("北京汇创思拓数字科技有限公司")) {
|
|
|
userCompany.setNickName("华北");
|
|
|
}
|
|
|
- if(departName.trim().contains("上海汇创思拓数字科技有限公司")){
|
|
|
+ if (departName.trim().contains("上海汇创思拓数字科技有限公司")) {
|
|
|
userCompany.setNickName("华东");
|
|
|
}
|
|
|
- if(departName.trim().contains("北京骄阳")){
|
|
|
+ if (departName.trim().contains("北京骄阳")) {
|
|
|
userCompany.setNickName("骄阳");
|
|
|
}
|
|
|
- if(departName.trim().contains("广州汇创思拓数字科技有限公司")){
|
|
|
+ if (departName.trim().contains("广州汇创思拓数字科技有限公司")) {
|
|
|
userCompany.setNickName("华南");
|
|
|
}
|
|
|
- if(departName.trim().contains("北京次元像素")){
|
|
|
+ if (departName.trim().contains("北京次元像素")) {
|
|
|
userCompany.setNickName("石家庄");
|
|
|
}
|
|
|
- if(departName.trim().contains("杭州妙构思数字科技有限公司")){
|
|
|
+ if (departName.trim().contains("杭州妙构思数字科技有限公司")) {
|
|
|
userCompany.setNickName("杭州");
|
|
|
}
|
|
|
+ if (departName.trim().contains("石家庄五六七广告有限公司")) {
|
|
|
+ userCompany.setNickName("华北");
|
|
|
+ }
|
|
|
}
|
|
|
QueryWrapper<UserCompany> userCompanyQueryWrapper = new QueryWrapper();
|
|
|
userCompanyQueryWrapper.eq("user_id", user.getId());
|