Parcourir la source

git-svn-id: https://192.168.57.71/svn/jsgkj@568 931142cf-59ea-a443-aa0e-51397b428577

xt_yuanxd il y a 9 ans
Parent
commit
d667094e99

+ 39 - 7
gkaqv2/trunk/modules/frame/src/main/java/com/xt/js/gkaq/frame/model/UserModel.java

@@ -1,34 +1,50 @@
 package com.xt.js.gkaq.frame.model;
 
 /**
- * 用户对象
+ * 用户对象模型
  * 
  * @author yuanxd
  *
  */
 public class UserModel {
+	/** 唯一主键UUID */
 	private String id;
-
+	/** 用户真实姓名 */
 	private String realName;
-
+	/** 登录账号 */
 	private String loginName;
-
+	/** 登录密码 */
 	private String loginPassword;
-
+	/** 所在部门 */
 	private String orgid;
-
+	/** 性别 */
 	private String sex;
-
+	/** 联系电话 */
 	private String phone;
 
+	/** 电子邮件地址 */
 	private String email;
 
+	/** 创建时间 */
 	private Object createTime;
 
+	/** 更新时间 */
 	private Object updateTime;
 
+	/** 记录状态 */
 	private String state;
 
+	/** 人员类型(行政人员 1、经营人2、船代3等) */
+	private String rylx;
+
+	/** 账号失效时间 */
+	private Object sxsj;
+
+	/**
+	 * 唯一主键UUID
+	 * 
+	 * @return
+	 */
 	public String getId() {
 		return id;
 	}
@@ -116,4 +132,20 @@ public class UserModel {
 	public void setState(String state) {
 		this.state = state == null ? null : state.trim();
 	}
+
+	public String getRylx() {
+		return rylx;
+	}
+
+	public void setRylx(String rylx) {
+		this.rylx = rylx == null ? null : rylx.trim();
+	}
+
+	public Object getSxsj() {
+		return sxsj;
+	}
+
+	public void setSxsj(Object sxsj) {
+		this.sxsj = sxsj;
+	}
 }