飞手去除状态

上级 63a2bb0c
......@@ -109,7 +109,12 @@ public class UserAccountDO implements Serializable {
this.nickName = userAccountVO.getNickName();
this.districtChildId = userAccountVO.getDistrictChildId();
this.briefIntroduction = userAccountVO.getBriefIntroduction();
this.userStateId = userAccountVO.getUserStateVO().getId();
Integer userStateId = userAccountVO.getUserStateVO().getId();
if(userStateId == 0) {
this.userStateId = null;
}else {
this.userStateId = userStateId;
}
}
public UserAccountDO(BUserAccountVO bUserAccountVO) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论