From e7ac7e5702f6ac1f88403485de232e5494a1c76a Mon Sep 17 00:00:00 2001
From: zhaowenxuan <chacca165@163.com>
Date: 星期一, 11 八月 2025 13:55:57 +0800
Subject: [PATCH] 修改错误日志打印
---
ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjSampling.java | 133 ++++++-------------------------------------
1 files changed, 20 insertions(+), 113 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 efa15e7..9552487 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
@@ -12,6 +12,7 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
+import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
@@ -22,10 +23,9 @@
* @author ltkj_璧典匠璞�&鏉庢牸
* @date 2023-04-11
*/
+@EqualsAndHashCode(callSuper = true)
@Data
@ApiModel(value = "閲囨牱绠$悊")
-@AllArgsConstructor
-@NoArgsConstructor
public class TjSampling extends BaseEntity {
private static final long serialVersionUID = 1L;
@@ -39,6 +39,9 @@
@Excel(name = "浣撴鍙�")
@ApiModelProperty(value = "浣撴鍙�")
private String tjNum;
+
+ @TableField(exist = false)
+ private String cardId;
/**
* 閲囨牱缂栧彿
@@ -123,6 +126,11 @@
private String specimenTypeCode;
/**
+ * 鏍锋湰
+ */
+ private String yb;
+
+ /**
* 鏄惁涓哄悎骞堕」鐩� 1鏄� 0鍚�
*/
private Integer isMerge;
@@ -137,118 +145,15 @@
*/
private String jxbz;
- public String getJxbz() {
- return jxbz;
- }
+ /**
+ * 鏄惁鏀粯
+ */
+ private Integer isPay;
- 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;
- }
-
- public String getId() {
- return id;
- }
-
- public void setSamplingNumber(String samplingNumber) {
- this.samplingNumber = samplingNumber;
- }
-
- public String getSamplingNumber() {
- return samplingNumber;
- }
-
- public void setCusId(String cusId) {
- this.cusId = cusId;
- }
-
- public String getCusId() {
- return cusId;
- }
-
- public void setApplicationTime(Date applicationTime) {
- this.applicationTime = applicationTime;
- }
-
- public Date getApplicationTime() {
- return applicationTime;
- }
-
-
- public void setTjTime(Date tjTime) {
- this.tjTime = tjTime;
- }
-
- public Date getTjTime() {
- return tjTime;
- }
-
- public void setSpecimenType(String specimenType) {
- this.specimenType = specimenType;
- }
-
- public String getSpecimenType() {
- return specimenType;
- }
-
- public void setProId(String proId) {
- this.proId = proId;
- }
-
- public String getProId() {
- return proId;
- }
-
- public void setProName(String proName) {
- this.proName = proName;
- }
-
- public String getProName() {
- return proName;
- }
+ /**
+ * 鏄惁鎴愬姛鍙戝嚭鐢宠
+ */
+ private Integer isApply;
@Override
public String toString() {
@@ -270,6 +175,8 @@
.append("parentId", getParentId())
.append("jyxh", getJyxh())
.append("specimenTypeCode", getSpecimenTypeCode())
+ .append("isPay", getIsPay())
+ .append("isApply", getIsApply())
.toString();
}
}
--
Gitblit v1.8.0