From d536b588ff3a76b7f7074580feb56bee9915dc38 Mon Sep 17 00:00:00 2001 From: zhaowenxuan <chacca165@163.com> Date: 星期三, 16 十月 2024 17:23:33 +0800 Subject: [PATCH] 增加lis项目代码字段 --- ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjSampling.java | 65 ++++++++++++++++++++++++++++++++ 1 files changed, 65 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..a163e03 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 @@ -105,6 +105,68 @@ @TableField(exist = false) private TjCustomer customer; + /** + * 鍚堝苟鍚庣殑鐖秈d + */ + private String parentId; + + /** + * 鍚憀is鐢宠鍗曠殑妫�楠屽簭鍙� + */ + private String jyxh; + + /** + * 鏍囨湰浠g爜 + */ + private String specimenTypeCode; + + /** + * 鏄惁涓哄悎骞堕」鐩� 1鏄� 0鍚� + */ + private Integer isMerge; + + private String jyxmdm; + + 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 +249,9 @@ .append("updateBy", getUpdateBy()) .append("updateTime", getUpdateTime()) .append("deleted", getDeleted()) + .append("parentId", getParentId()) + .append("jyxh", getJyxh()) + .append("specimenTypeCode", getSpecimenTypeCode()) .toString(); } } -- Gitblit v1.8.0