|
@@ -1,199 +1,199 @@
|
|
|
-package com.diagbot.entity;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-/**
|
|
|
- * <p>
|
|
|
- * 医院所有配置信息
|
|
|
- * </p>
|
|
|
- *
|
|
|
- * @author zhaops
|
|
|
- * @since 2019-08-14
|
|
|
- */
|
|
|
-@TableName("tran_sys_set")
|
|
|
-public class SysSet implements Serializable {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**
|
|
|
- * 主键
|
|
|
- */
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
- private Long id;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否删除,N:未删除,Y:删除
|
|
|
- */
|
|
|
- private String isDeleted;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录创建时间
|
|
|
- */
|
|
|
- private Date gmtCreate;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
- */
|
|
|
- private Date gmtModified;
|
|
|
-
|
|
|
- /**
|
|
|
- * 创建人,0表示无创建人值
|
|
|
- */
|
|
|
- private String creator;
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改人,如果为0则表示纪录未修改
|
|
|
- */
|
|
|
- private String modifier;
|
|
|
-
|
|
|
- /**
|
|
|
- * 医院编码
|
|
|
- */
|
|
|
- private String hospitalCode;
|
|
|
-
|
|
|
- /**
|
|
|
- * 方案编号
|
|
|
- */
|
|
|
- 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 String name;
|
|
|
-
|
|
|
- /**
|
|
|
- * 配置编码
|
|
|
- */
|
|
|
- private String code;
|
|
|
-
|
|
|
- /**
|
|
|
- * 配置值
|
|
|
- */
|
|
|
- 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 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 +
|
|
|
- "}";
|
|
|
- }
|
|
|
-}
|
|
|
+package com.diagbot.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 医院所有配置信息
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author zhaops
|
|
|
+ * @since 2019-08-14
|
|
|
+ */
|
|
|
+@TableName("tran_sys_set")
|
|
|
+public class SysSet implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否删除,N:未删除,Y:删除
|
|
|
+ */
|
|
|
+ private String isDeleted;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录创建时间
|
|
|
+ */
|
|
|
+ private Date gmtCreate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
+ */
|
|
|
+ private Date gmtModified;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人,0表示无创建人值
|
|
|
+ */
|
|
|
+ private String creator;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人,如果为0则表示纪录未修改
|
|
|
+ */
|
|
|
+ private String modifier;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 医院编码
|
|
|
+ */
|
|
|
+ private String hospitalCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 方案编号
|
|
|
+ */
|
|
|
+ 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 String name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 配置编码
|
|
|
+ */
|
|
|
+ private String code;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 配置值
|
|
|
+ */
|
|
|
+ private String 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 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 String getValue() {
|
|
|
+ return value;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setValue(String 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 +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|