新增委托方修改
This commit is contained in:
+6
-3
@@ -2114,9 +2114,12 @@ public class UserApplicationService {
|
|||||||
UserEntity userEntity = userDomainService.updateUser(userDO);
|
UserEntity userEntity = userDomainService.updateUser(userDO);
|
||||||
//同步网货平台员工信息
|
//同步网货平台员工信息
|
||||||
wlhyDomainService.addOrEditPlatformUser(userEntity);
|
wlhyDomainService.addOrEditPlatformUser(userEntity);
|
||||||
//同步yms员工信息
|
if (userEntity.getUserAccount()!=null){
|
||||||
ymsDomainService.addOrEditYmsUser(userEntity);
|
//同步yms员工信息
|
||||||
BeanUtils.copyProperties(userPo, userEntity);
|
ymsDomainService.addOrEditYmsUser(userEntity);
|
||||||
|
BeanUtils.copyProperties(userPo, userEntity);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return userPo;
|
return userPo;
|
||||||
|
|||||||
+3
@@ -312,4 +312,7 @@ public class UserShipperDO extends UserDO {
|
|||||||
@ApiModelProperty(name = "登录账号(2-20位)")
|
@ApiModelProperty(name = "登录账号(2-20位)")
|
||||||
private String userAccount;
|
private String userAccount;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "登录密码(6-20位)")
|
||||||
|
private String userPassword;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -253,4 +253,7 @@ public class UserShipperDTO extends UserDTO {
|
|||||||
|
|
||||||
@ApiModelProperty(name = "登录账号(2-20位)")
|
@ApiModelProperty(name = "登录账号(2-20位)")
|
||||||
private String userAccount;
|
private String userAccount;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "登录密码(6-20位)")
|
||||||
|
private String userPassword;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user