From a28c894d35b5ca697bfe455c2d584c7f28ec3722 Mon Sep 17 00:00:00 2001 From: lige <bestlige@outlook.com> Date: 星期五, 15 十二月 2023 15:51:59 +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