From 1b7ed7edb09aaecf68ddf3396ee007bc6eadf52a Mon Sep 17 00:00:00 2001
From: zjh <1084500556@qq.com>
Date: 星期一, 30 十二月 2024 17:04:09 +0800
Subject: [PATCH] zjh202412030

---
 ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjSampling.java |   86 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 86 insertions(+), 0 deletions(-)

diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjSampling.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjSampling.java
index 3629ebf..7d0b56e 100644
--- a/ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjSampling.java
+++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjSampling.java
@@ -2,6 +2,7 @@
 
 import java.util.Date;
 
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
 import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.fasterxml.jackson.annotation.JsonFormat;
@@ -38,6 +39,9 @@
     @Excel(name = "浣撴鍙�")
     @ApiModelProperty(value = "浣撴鍙�")
     private String tjNum;
+
+    @TableField(exist = false)
+    private String cardId;
 
     /**
      * 閲囨牱缂栧彿
@@ -104,6 +108,85 @@
     @ApiModelProperty(value = "閲囨牱瀹㈡埛淇℃伅")
     @TableField(exist = false)
     private TjCustomer customer;
+
+    /**
+     * 鍚堝苟鍚庣殑鐖秈d
+     */
+    @TableField(updateStrategy = FieldStrategy.IGNORED)
+    private String parentId;
+
+    /**
+     * 鍚憀is鐢宠鍗曠殑妫�楠屽簭鍙�
+     */
+    private String jyxh;
+
+    /**
+     * 鏍囨湰浠g爜
+     */
+    private String specimenTypeCode;
+
+    /**
+     * 鏄惁涓哄悎骞堕」鐩� 1鏄� 0鍚�
+     */
+    private Integer isMerge;
+
+    /**
+     * lis妫�楠岄」鐩唬鐮�
+     */
+    private String jyxmdm;
+
+    /**
+     * 琛ュ綍椤圭洰鏍囧織缂栫爜
+     */
+    private String jxbz;
+
+    public String getJxbz() {
+        return jxbz;
+    }
+
+    public void setJxbz(String jxbz) {
+        this.jxbz = jxbz;
+    }
+
+    public String getJyxmdm() {
+        return jyxmdm;
+    }
+
+    public void setJyxmdm(String jyxmdm) {
+        this.jyxmdm = jyxmdm;
+    }
+
+    public Integer getIsMerge() {
+        return isMerge;
+    }
+
+    public void setIsMerge(Integer isMerge) {
+        this.isMerge = isMerge;
+    }
+
+    public String getSpecimenTypeCode() {
+        return specimenTypeCode;
+    }
+
+    public void setSpecimenTypeCode(String specimenTypeCode) {
+        this.specimenTypeCode = specimenTypeCode;
+    }
+
+    public String getParentId() {
+        return parentId;
+    }
+
+    public void setParentId(String parentId) {
+        this.parentId = parentId;
+    }
+
+    public String getJyxh() {
+        return jyxh;
+    }
+
+    public void setJyxh(String jyxh) {
+        this.jyxh = jyxh;
+    }
 
     public void setId(String id) {
         this.id = id;
@@ -187,6 +270,9 @@
                 .append("updateBy", getUpdateBy())
                 .append("updateTime", getUpdateTime())
                 .append("deleted", getDeleted())
+                .append("parentId", getParentId())
+                .append("jyxh", getJyxh())
+                .append("specimenTypeCode", getSpecimenTypeCode())
                 .toString();
     }
 }

--
Gitblit v1.8.0