From e00d0891b7477fd97c766b2cc6a66cdec94bfc5e Mon Sep 17 00:00:00 2001 From: lige <bestlige@outlook.com> Date: 星期四, 14 十二月 2023 20:23:42 +0800 Subject: [PATCH] 体检套餐优化 --- ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjCustomer.java | 19 ++++++++++++++++++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjCustomer.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjCustomer.java index 6d23daf..708a0f4 100644 --- a/ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjCustomer.java +++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjCustomer.java @@ -212,7 +212,7 @@ * 浣撴鏃堕棿 */ @TableField(exist = false) - @JsonFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date tjTime; /** @@ -295,6 +295,22 @@ private String wechat; + @TableField(exist = false) + private Integer isHz; + + @TableField(exist = false) + private Long isPositive; + + @TableField(exist = false) + private String tjCategory; + + @ApiModelProperty("搴ф満") + private String dwPhone; + + @ApiModelProperty("灏辫瘖缂栧彿") + private String cardId; + + @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) @@ -319,6 +335,7 @@ .append("updateBy", getUpdateBy()) .append("updateTime", getUpdateTime()) .append("deleted", getDeleted()) + .append("dwPhone", getDwPhone()) .toString(); } } -- Gitblit v1.8.0