|
@@ -9,19 +9,19 @@ import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
|
- * 系统用户表
|
|
|
+ * 体质基本信息表
|
|
|
* </p>
|
|
|
*
|
|
|
* @author gaodm
|
|
|
- * @since 2018-08-30
|
|
|
+ * @since 2019-05-30
|
|
|
*/
|
|
|
-@TableName("sys_user")
|
|
|
-public class User implements Serializable {
|
|
|
+@TableName("prec_physical_info")
|
|
|
+public class PhysicalInfo implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/**
|
|
|
- * 用户ID
|
|
|
+ * 主键
|
|
|
*/
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
private Long id;
|
|
@@ -52,15 +52,14 @@ public class User implements Serializable {
|
|
|
private String modifier;
|
|
|
|
|
|
/**
|
|
|
- * 用户密码
|
|
|
+ * 体质名称
|
|
|
*/
|
|
|
- private String password;
|
|
|
+ private String physical;
|
|
|
|
|
|
/**
|
|
|
- * 用户名
|
|
|
+ * 体质描述
|
|
|
*/
|
|
|
- private String username;
|
|
|
-
|
|
|
+ private String description;
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
@@ -69,7 +68,6 @@ public class User implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
-
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -77,7 +75,6 @@ public class User implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
-
|
|
|
public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
@@ -85,7 +82,6 @@ public class User implements Serializable {
|
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
-
|
|
|
public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
@@ -93,7 +89,6 @@ public class User implements Serializable {
|
|
|
public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
-
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -101,7 +96,6 @@ public class User implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
-
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -109,34 +103,32 @@ public class User implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
-
|
|
|
- public String getPassword() {
|
|
|
- return password;
|
|
|
+ public String getPhysical() {
|
|
|
+ return physical;
|
|
|
}
|
|
|
|
|
|
- public void setPassword(String password) {
|
|
|
- this.password = password;
|
|
|
+ public void setPhysical(String physical) {
|
|
|
+ this.physical = physical;
|
|
|
}
|
|
|
-
|
|
|
- public String getUsername() {
|
|
|
- return username;
|
|
|
+ public String getDescription() {
|
|
|
+ return description;
|
|
|
}
|
|
|
|
|
|
- public void setUsername(String username) {
|
|
|
- this.username = username;
|
|
|
+ public void setDescription(String description) {
|
|
|
+ this.description = description;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return "User{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", password=" + password +
|
|
|
- ", username=" + username +
|
|
|
- "}";
|
|
|
+ return "PhysicalInfo{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", physical=" + physical +
|
|
|
+ ", description=" + description +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|