|
@@ -2,8 +2,9 @@ package com.diagbot.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import java.time.LocalDateTime;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -31,12 +32,12 @@ public class KlConceptCommon implements Serializable {
|
|
|
/**
|
|
|
* 记录创建时间
|
|
|
*/
|
|
|
- private LocalDateTime gmtCreate;
|
|
|
+ private Date gmtCreate;
|
|
|
|
|
|
/**
|
|
|
* 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
*/
|
|
|
- private LocalDateTime gmtModified;
|
|
|
+ private Date gmtModified;
|
|
|
|
|
|
/**
|
|
|
* 创建人,0表示无创建人值
|
|
@@ -80,6 +81,7 @@ public class KlConceptCommon implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -87,20 +89,23 @@ public class KlConceptCommon implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
- public LocalDateTime getGmtCreate() {
|
|
|
+
|
|
|
+ public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
|
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
+ public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
- public LocalDateTime getGmtModified() {
|
|
|
+
|
|
|
+ public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
|
|
|
|
- public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
+ public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
+
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -108,6 +113,7 @@ public class KlConceptCommon implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
+
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -115,6 +121,7 @@ public class KlConceptCommon implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
+
|
|
|
public Long getConceptId() {
|
|
|
return conceptId;
|
|
|
}
|
|
@@ -122,6 +129,7 @@ public class KlConceptCommon implements Serializable {
|
|
|
public void setConceptId(Long conceptId) {
|
|
|
this.conceptId = conceptId;
|
|
|
}
|
|
|
+
|
|
|
public Integer getSexType() {
|
|
|
return sexType;
|
|
|
}
|
|
@@ -129,6 +137,7 @@ public class KlConceptCommon implements Serializable {
|
|
|
public void setSexType(Integer sexType) {
|
|
|
this.sexType = sexType;
|
|
|
}
|
|
|
+
|
|
|
public Double getMinAge() {
|
|
|
return minAge;
|
|
|
}
|
|
@@ -136,6 +145,7 @@ public class KlConceptCommon implements Serializable {
|
|
|
public void setMinAge(Double minAge) {
|
|
|
this.minAge = minAge;
|
|
|
}
|
|
|
+
|
|
|
public Double getMaxAge() {
|
|
|
return maxAge;
|
|
|
}
|
|
@@ -143,6 +153,7 @@ public class KlConceptCommon implements Serializable {
|
|
|
public void setMaxAge(Double maxAge) {
|
|
|
this.maxAge = maxAge;
|
|
|
}
|
|
|
+
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
@@ -154,17 +165,17 @@ public class KlConceptCommon implements Serializable {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "KlConceptCommon{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", conceptId=" + conceptId +
|
|
|
- ", sexType=" + sexType +
|
|
|
- ", minAge=" + minAge +
|
|
|
- ", maxAge=" + maxAge +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", conceptId=" + conceptId +
|
|
|
+ ", sexType=" + sexType +
|
|
|
+ ", minAge=" + minAge +
|
|
|
+ ", maxAge=" + maxAge +
|
|
|
+ ", remark=" + remark +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|