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