|
@@ -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;
|
|
|
+ }
|
|
|
}
|