Ver Fonte

用户信息增加绑定ImID信息

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@3660 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
shenj há 10 anos atrás
pai
commit
689743da6e

+ 2 - 0
src/main/java/com/uas/platform/b2b/manage/model/AccountInfo.java

@@ -97,6 +97,7 @@ public class AccountInfo {
 		this.password = user.getUserPwd();
 		this.tel = user.getUserTel();
 		this.userUU = user.getUserUU();
+		this.userIMId = user.getUserIMId();
 	}
 
 	public User convert() {
@@ -106,6 +107,7 @@ public class AccountInfo {
 		user.setUserName(this.name);
 		user.setUserTel(this.tel);
 		user.setUserPwd(this.password);
+		user.setUserIMId(this.userIMId);
 		Enterprise enterprise = new Enterprise();
 		enterprise.setUu(this.enUU);
 		Set<Enterprise> enterprises = new HashSet<Enterprise>();