|
|
@@ -5,6 +5,9 @@ import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
import com.google.common.collect.Lists; |
|
|
|
import com.ningdatech.basic.function.VUtils; |
|
|
|
import com.ningdatech.pmapi.common.constant.BizConst; |
|
|
|
import com.ningdatech.pmapi.expert.entity.ExpertUserFullInfo; |
|
|
|
import com.ningdatech.pmapi.expert.service.ExpertInfoService; |
|
|
|
import com.ningdatech.pmapi.expert.service.IExpertUserFullInfoService; |
|
|
|
import com.ningdatech.pmapi.fiscal.entity.CompanyFiscalCode; |
|
|
|
import com.ningdatech.pmapi.fiscal.service.ICompanyFiscalCodeService; |
|
|
|
import com.ningdatech.pmapi.signature.entity.CompanySignature; |
|
|
@@ -52,6 +55,8 @@ public class UserGuidanceManage { |
|
|
|
|
|
|
|
private final ICompanySignatureService signatureService; |
|
|
|
|
|
|
|
private final IExpertUserFullInfoService expertUserFullInfoService; |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询用户引导 详情 |
|
|
|
* @param user |
|
|
@@ -144,6 +149,11 @@ public class UserGuidanceManage { |
|
|
|
.in(UserAuth::getUserId,repeatIds)); |
|
|
|
userRoleService.remove(Wrappers.lambdaQuery(UserRole.class) |
|
|
|
.in(UserRole::getUserId,repeatIds)); |
|
|
|
for(Long repeatId : repeatIds){ |
|
|
|
ExpertUserFullInfo expert = expertUserFullInfoService.getByUserId(repeatId); |
|
|
|
expert.setUserId(userId); |
|
|
|
expertUserFullInfoService.updateById(expert); |
|
|
|
} |
|
|
|
return "删除成功"; |
|
|
|
} |
|
|
|
return "不存在重复的用户"; |
|
|
|