From 3837aad4480a013b2a81faf36c9c6d241097d55d Mon Sep 17 00:00:00 2001 From: shiyang <316555390@qq.com> Date: Thu, 7 Apr 2022 10:11:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8C=BB=E7=94=9F=E4=BF=A1=E6=81=AF=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/lyms/talkonlineweb/domain/LymsDoctor.java | 16 ++++++++++++++++ .../service/impl/LymsHisInfoServiceImpl.java | 3 ++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsDoctor.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsDoctor.java index 4fdd582..95da26e 100644 --- a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsDoctor.java +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsDoctor.java @@ -149,6 +149,22 @@ public class LymsDoctor implements Serializable { @TableField(value = "sex") private Integer sex; + /** + * 职务 + */ + @TableField(value = "job") + private String job; + /** + * 治疗住院病例数 + */ + @TableField(value = "remedy_count") + private Integer remedyCount; + /** + * 擅长 + */ + @TableField(value = "specialty") + private String specialty; + @Override public boolean equals(Object that) { diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsHisInfoServiceImpl.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsHisInfoServiceImpl.java index cf9661f..f7cc436 100644 --- a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsHisInfoServiceImpl.java +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsHisInfoServiceImpl.java @@ -17,6 +17,7 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; +import org.springframework.util.DigestUtils; import java.util.*; @@ -198,7 +199,7 @@ public class LymsHisInfoServiceImpl extends ServiceImpl