|
@@ -0,0 +1,220 @@
|
|
|
+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.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 指标数据表
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author wangfeng
|
|
|
+ * @since 2019-05-08
|
|
|
+ */
|
|
|
+@TableName("tran_index_data")
|
|
|
+public class IndexData 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;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 指标公表名概念id
|
|
|
+ */
|
|
|
+ private Long conceptId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 指标公表名
|
|
|
+ */
|
|
|
+ private String libName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 指标值
|
|
|
+ */
|
|
|
+ private String indexValue;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 指标单位
|
|
|
+ */
|
|
|
+ private String indexUnit;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否异常
|
|
|
+ */
|
|
|
+ private Integer isAbnormal;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 化验时间
|
|
|
+ */
|
|
|
+ private Date creatTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 患者id
|
|
|
+ */
|
|
|
+ private Long patientId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 就诊号
|
|
|
+ */
|
|
|
+ private String inquiryCode;
|
|
|
+
|
|
|
+ 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 Long getConceptId() {
|
|
|
+ return conceptId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConceptId(Long conceptId) {
|
|
|
+ this.conceptId = conceptId;
|
|
|
+ }
|
|
|
+ public String getLibName() {
|
|
|
+ return libName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLibName(String libName) {
|
|
|
+ this.libName = libName;
|
|
|
+ }
|
|
|
+ public String getIndexValue() {
|
|
|
+ return indexValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIndexValue(String indexValue) {
|
|
|
+ this.indexValue = indexValue;
|
|
|
+ }
|
|
|
+ public String getIndexUnit() {
|
|
|
+ return indexUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIndexUnit(String indexUnit) {
|
|
|
+ this.indexUnit = indexUnit;
|
|
|
+ }
|
|
|
+ public Integer getIsAbnormal() {
|
|
|
+ return isAbnormal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsAbnormal(Integer isAbnormal) {
|
|
|
+ this.isAbnormal = isAbnormal;
|
|
|
+ }
|
|
|
+ public Date getCreatTime() {
|
|
|
+ return creatTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatTime(Date creatTime) {
|
|
|
+ this.creatTime = creatTime;
|
|
|
+ }
|
|
|
+ public Long getPatientId() {
|
|
|
+ return patientId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPatientId(Long patientId) {
|
|
|
+ this.patientId = patientId;
|
|
|
+ }
|
|
|
+ public String getInquiryCode() {
|
|
|
+ return inquiryCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInquiryCode(String inquiryCode) {
|
|
|
+ this.inquiryCode = inquiryCode;
|
|
|
+ }
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "IndexData{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", conceptId=" + conceptId +
|
|
|
+ ", libName=" + libName +
|
|
|
+ ", indexValue=" + indexValue +
|
|
|
+ ", indexUnit=" + indexUnit +
|
|
|
+ ", isAbnormal=" + isAbnormal +
|
|
|
+ ", creatTime=" + creatTime +
|
|
|
+ ", patientId=" + patientId +
|
|
|
+ ", inquiryCode=" + inquiryCode +
|
|
|
+ ", remark=" + remark +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|