|
@@ -2,6 +2,8 @@ package com.diagbot.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
@@ -14,6 +16,8 @@ import java.util.Date;
|
|
|
* @author wangfeng
|
|
|
* @since 2021-03-01
|
|
|
*/
|
|
|
+@Setter
|
|
|
+@Getter
|
|
|
public class KlLis implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -76,94 +80,46 @@ public class KlLis implements Serializable {
|
|
|
private String unit;
|
|
|
|
|
|
/**
|
|
|
- * 备注
|
|
|
+ * 检查标本
|
|
|
*/
|
|
|
- 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;
|
|
|
- }
|
|
|
+ private String checkSpecimen;
|
|
|
|
|
|
- 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;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 检查方法
|
|
|
+ */
|
|
|
+ private String checkMethod;
|
|
|
|
|
|
- public void setCreator(String creator) {
|
|
|
- this.creator = creator;
|
|
|
- }
|
|
|
- public String getModifier() {
|
|
|
- return modifier;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 影响因素
|
|
|
+ */
|
|
|
+ private String influenceFac;
|
|
|
|
|
|
- public void setModifier(String modifier) {
|
|
|
- this.modifier = modifier;
|
|
|
- }
|
|
|
- public Long getConceptId() {
|
|
|
- return conceptId;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 临床意义
|
|
|
+ */
|
|
|
+ private String clinicalSig;
|
|
|
|
|
|
- public void setConceptId(Long conceptId) {
|
|
|
- this.conceptId = conceptId;
|
|
|
- }
|
|
|
- public Double getMinValue() {
|
|
|
- return minValue;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 定性(阴、阳性)
|
|
|
+ */
|
|
|
+ private String qualitative;
|
|
|
|
|
|
- public void setMinValue(Double minValue) {
|
|
|
- this.minValue = minValue;
|
|
|
- }
|
|
|
- public Double getMaxValue() {
|
|
|
- return maxValue;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 所属类别
|
|
|
+ */
|
|
|
+ private String category;
|
|
|
|
|
|
- public void setMaxValue(Double maxValue) {
|
|
|
- this.maxValue = maxValue;
|
|
|
- }
|
|
|
- public Integer getType() {
|
|
|
- return type;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 英文名称
|
|
|
+ */
|
|
|
+ private String enName;
|
|
|
|
|
|
- public void setType(Integer type) {
|
|
|
- this.type = type;
|
|
|
- }
|
|
|
- public String getUnit() {
|
|
|
- return unit;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remark;
|
|
|
|
|
|
- public void setUnit(String unit) {
|
|
|
- this.unit = unit;
|
|
|
- }
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|