|
@@ -1,10 +1,12 @@
|
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import java.time.LocalDateTime;
|
|
|
-import java.io.Serializable;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -33,12 +35,12 @@ public class SysSet implements Serializable {
|
|
|
/**
|
|
|
* 记录创建时间
|
|
|
*/
|
|
|
- private LocalDateTime gmtCreate;
|
|
|
+ private Date gmtCreate;
|
|
|
|
|
|
/**
|
|
|
* 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
*/
|
|
|
- private LocalDateTime gmtModified;
|
|
|
+ private Date gmtModified;
|
|
|
|
|
|
/**
|
|
|
* 创建人,0表示无创建人值
|
|
@@ -63,122 +65,125 @@ public class SysSet implements Serializable {
|
|
|
/**
|
|
|
* 配置名称
|
|
|
*/
|
|
|
- private String deployName;
|
|
|
+ private String name;
|
|
|
|
|
|
/**
|
|
|
* 配置编码
|
|
|
*/
|
|
|
- private String deployCode;
|
|
|
+ private String code;
|
|
|
/**
|
|
|
* 配置值
|
|
|
*/
|
|
|
- private Integer deployValue;
|
|
|
+ private Integer value;
|
|
|
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|
|
|
private String remark;
|
|
|
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
- public String getIsDeleted() {
|
|
|
- return isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsDeleted(String isDeleted) {
|
|
|
- this.isDeleted = isDeleted;
|
|
|
- }
|
|
|
- public LocalDateTime getGmtCreate() {
|
|
|
- return gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
- this.gmtCreate = gmtCreate;
|
|
|
- }
|
|
|
- public LocalDateTime getGmtModified() {
|
|
|
- return gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
- this.gmtModified = gmtModified;
|
|
|
- }
|
|
|
- public String getCreator() {
|
|
|
- return creator;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreator(String creator) {
|
|
|
- this.creator = creator;
|
|
|
- }
|
|
|
- public String getModifier() {
|
|
|
- return modifier;
|
|
|
- }
|
|
|
-
|
|
|
- public void setModifier(String modifier) {
|
|
|
- this.modifier = modifier;
|
|
|
- }
|
|
|
- public String getHospitalCode() {
|
|
|
- return hospitalCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHospitalCode(String hospitalCode) {
|
|
|
- this.hospitalCode = hospitalCode;
|
|
|
- }
|
|
|
- public Integer getSysType() {
|
|
|
- return sysType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSysType(Integer sysType) {
|
|
|
- this.sysType = sysType;
|
|
|
- }
|
|
|
- public String getDeployName() {
|
|
|
- return deployName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDeployName(String deployName) {
|
|
|
- this.deployName = deployName;
|
|
|
- }
|
|
|
- public Integer getDeployValue() {
|
|
|
- return deployValue;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDeployValue(Integer deployValue) {
|
|
|
- this.deployValue = deployValue;
|
|
|
- }
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDeployCode() {
|
|
|
- return deployCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDeployCode(String deployCode) {
|
|
|
- this.deployCode = deployCode;
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIsDeleted() {
|
|
|
+ return isDeleted;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsDeleted(String isDeleted) {
|
|
|
+ this.isDeleted = isDeleted;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getGmtCreate() {
|
|
|
+ return gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtCreate(Date gmtCreate) {
|
|
|
+ this.gmtCreate = gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getGmtModified() {
|
|
|
+ return gmtModified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtModified(Date gmtModified) {
|
|
|
+ this.gmtModified = gmtModified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreator() {
|
|
|
+ return creator;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreator(String creator) {
|
|
|
+ this.creator = creator;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getModifier() {
|
|
|
+ return modifier;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModifier(String modifier) {
|
|
|
+ this.modifier = modifier;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getHospitalCode() {
|
|
|
+ return hospitalCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHospitalCode(String hospitalCode) {
|
|
|
+ this.hospitalCode = hospitalCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSysType() {
|
|
|
+ return sysType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSysType(Integer sysType) {
|
|
|
+ this.sysType = sysType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCode() {
|
|
|
+ return code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCode(String code) {
|
|
|
+ this.code = code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getValue() {
|
|
|
+ return value;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setValue(Integer value) {
|
|
|
+ this.value = value;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public String toString() {
|
|
|
- return "SysSet{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", hospitalCode=" + hospitalCode +
|
|
|
- ", sysType=" + sysType +
|
|
|
- ", deployName=" + deployName +
|
|
|
- ", deployValue=" + deployValue +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
- }
|
|
|
+ public String toString() {
|
|
|
+ return "SysSet [id=" + id + ", isDeleted=" + isDeleted + ", gmtCreate=" + gmtCreate + ", gmtModified="
|
|
|
+ + gmtModified + ", creator=" + creator + ", modifier=" + modifier + ", hospitalCode=" + hospitalCode
|
|
|
+ + ", sysType=" + sysType + ", name=" + name + ", code=" + code + ", value=" + value + ", remark="
|
|
|
+ + remark + "]";
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|