|
@@ -957,7 +957,7 @@ public class UserFacade extends UserServiceImpl {
|
|
|
map.put("modifier", UserUtils.getCurrentPrincipleID());
|
|
|
map.put("gmtModified", DateUtil.now());
|
|
|
User userDate = getById(baseIdVO.getId());
|
|
|
- if(userDate==null){
|
|
|
+ if(userDate.getIsDeleted().equals("Y")){
|
|
|
return RespDTO.onError("该用户已不存在");
|
|
|
}
|
|
|
//客户中心-查询用户续费数量
|
|
@@ -1399,7 +1399,7 @@ public class UserFacade extends UserServiceImpl {
|
|
|
amendUserInfo.put("position", amendUserInfoVO.getPosition());
|
|
|
amendUserInfo.put("linkman", amendUserInfoVO.getLinkman());
|
|
|
User userDate = getById(amendUserInfoVO.getUserId());
|
|
|
- if(userDate==null){
|
|
|
+ if(userDate.getIsDeleted().equals("Y")){
|
|
|
return RespDTO.onError("该用户已不存在");
|
|
|
}
|
|
|
boolean res = updateUserInfo(amendUserInfo);
|