|
@@ -1,20 +1,19 @@
|
|
package com.diagbot.entity;
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
|
-import java.time.LocalDateTime;
|
|
|
|
-import java.util.Date;
|
|
|
|
-
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+import java.util.Date;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
* 医院所有配置信息
|
|
* 医院所有配置信息
|
|
* </p>
|
|
* </p>
|
|
*
|
|
*
|
|
- * @author wangfeng
|
|
|
|
- * @since 2019-06-12
|
|
|
|
|
|
+ * @author zhaops
|
|
|
|
+ * @since 2019-08-14
|
|
*/
|
|
*/
|
|
@TableName("tran_sys_set")
|
|
@TableName("tran_sys_set")
|
|
public class SysSet implements Serializable {
|
|
public class SysSet implements Serializable {
|
|
@@ -58,7 +57,12 @@ public class SysSet implements Serializable {
|
|
private String hospitalCode;
|
|
private String hospitalCode;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 访问的系统类型 1:user-service,2:diagbotman-service,3:uaa-service,4:log-service,5:bi-service,6:knowledge-service,7:feedback-service,8:icss-web
|
|
|
|
|
|
+ * 方案编号
|
|
|
|
+ */
|
|
|
|
+ private Integer plan;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 访问的系统类型(1, "user-service"),(2, "diagbotman-service"),(3, "uaa-service"),(4, "log-service"),(5, "bi-service"),(6, "ltapi-service"),(7, "feedback-service"),(8, "icss-old-service"),(9, "triage-service"),(10, "appkey"),(11, "icss-service"),(12, "icssman-service"),(13, "knowledgeman-service"),(14, "tran-service"),(15, "aipt-service"),(16, "data-service"),(17, "prec-service");
|
|
*/
|
|
*/
|
|
private Integer sysType;
|
|
private Integer sysType;
|
|
|
|
|
|
@@ -71,6 +75,7 @@ public class SysSet implements Serializable {
|
|
* 配置编码
|
|
* 配置编码
|
|
*/
|
|
*/
|
|
private String code;
|
|
private String code;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 配置值
|
|
* 配置值
|
|
*/
|
|
*/
|
|
@@ -81,109 +86,114 @@ public class SysSet implements Serializable {
|
|
*/
|
|
*/
|
|
private String remark;
|
|
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 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 + ", name=" + name + ", code=" + code + ", value=" + value + ", remark="
|
|
|
|
- + 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 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 getPlan() {
|
|
|
|
+ return plan;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPlan(Integer plan) {
|
|
|
|
+ this.plan = plan;
|
|
|
|
+ }
|
|
|
|
+ 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 +
|
|
|
|
+ ", plan=" + plan +
|
|
|
|
+ ", sysType=" + sysType +
|
|
|
|
+ ", name=" + name +
|
|
|
|
+ ", code=" + code +
|
|
|
|
+ ", value=" + value +
|
|
|
|
+ ", remark=" + remark +
|
|
|
|
+ "}";
|
|
|
|
+ }
|
|
}
|
|
}
|