From 9ecae5ba231b0c46f419803c7f371ddfc0d5f89c Mon Sep 17 00:00:00 2001 From: changpengfei Date: Tue, 7 Sep 2021 16:32:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A7=91=E5=AE=A4=E5=AD=97?= =?UTF-8?q?=E5=85=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/talkonlineweb/domain/LymsHdepart.java | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsHdepart.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsHdepart.java index 5205a64..3a28b63 100644 --- a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsHdepart.java +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsHdepart.java @@ -43,17 +43,17 @@ public class LymsHdepart implements Serializable { private String hname; /** - * 科室登录账号 + * 科室项目 */ - @TableField(value = "dusername") - @NotNull(message = "登录科室账号不能为空") - private String dusername; + @TableField(value = "subcatalog") + @NotNull(message = "详细科目") + private String subcatalog; /** - * 科室登录密码 + * 科室介绍 */ - @TableField(value = "dpasswd") - private String dpasswd; + @TableField(value = "intro") + private String intro; /** * 创建人 @@ -103,8 +103,8 @@ public class LymsHdepart implements Serializable { && (this.getDname() == null ? other.getDname() == null : this.getDname().equals(other.getDname())) && (this.getHid() == null ? other.getHid() == null : this.getHid().equals(other.getHid())) && (this.getHname() == null ? other.getHname() == null : this.getHname().equals(other.getHname())) - && (this.getDusername() == null ? other.getDusername() == null : this.getDusername().equals(other.getDusername())) - && (this.getDpasswd() == null ? other.getDpasswd() == null : this.getDpasswd().equals(other.getDpasswd())) + && (this.getSubcatalog() == null ? other.getSubcatalog() == null : this.getSubcatalog().equals(other.getSubcatalog())) + && (this.getIntro() == null ? other.getIntro() == null : this.getIntro().equals(other.getIntro())) && (this.getCreatedby() == null ? other.getCreatedby() == null : this.getCreatedby().equals(other.getCreatedby())) && (this.getCreatedtime() == null ? other.getCreatedtime() == null : this.getCreatedtime().equals(other.getCreatedtime())) && (this.getUpdatedby() == null ? other.getUpdatedby() == null : this.getUpdatedby().equals(other.getUpdatedby())) @@ -119,8 +119,8 @@ public class LymsHdepart implements Serializable { result = prime * result + ((getDname() == null) ? 0 : getDname().hashCode()); result = prime * result + ((getHid() == null) ? 0 : getHid().hashCode()); result = prime * result + ((getHname() == null) ? 0 : getHname().hashCode()); - result = prime * result + ((getDusername() == null) ? 0 : getDusername().hashCode()); - result = prime * result + ((getDpasswd() == null) ? 0 : getDpasswd().hashCode()); + result = prime * result + ((getSubcatalog() == null) ? 0 : getSubcatalog().hashCode()); + result = prime * result + ((getIntro() == null) ? 0 : getIntro().hashCode()); result = prime * result + ((getCreatedby() == null) ? 0 : getCreatedby().hashCode()); result = prime * result + ((getCreatedtime() == null) ? 0 : getCreatedtime().hashCode()); result = prime * result + ((getUpdatedby() == null) ? 0 : getUpdatedby().hashCode()); @@ -138,8 +138,8 @@ public class LymsHdepart implements Serializable { sb.append(", dname=").append(dname); sb.append(", hid=").append(hid); sb.append(", hname=").append(hname); - sb.append(", dusername=").append(dusername); - sb.append(", dpasswd=").append(dpasswd); + sb.append(", subcatalog=").append(subcatalog); + sb.append(", intro=").append(intro); sb.append(", createdby=").append(createdby); sb.append(", createdtime=").append(createdtime); sb.append(", updatedby=").append(updatedby); -- 1.8.3.1