Commit 9ecae5ba231b0c46f419803c7f371ddfc0d5f89c
1 parent
e0576e8912
Exists in
master
and in
1 other branch
修改科室字典
Showing 1 changed file with 13 additions and 13 deletions
talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsHdepart.java
View file @
9ecae5b
... | ... | @@ -43,17 +43,17 @@ |
43 | 43 | private String hname; |
44 | 44 | |
45 | 45 | /** |
46 | - * 科室登录账号 | |
46 | + * 科室项目 | |
47 | 47 | */ |
48 | - @TableField(value = "dusername") | |
49 | - @NotNull(message = "登录科室账号不能为空") | |
50 | - private String dusername; | |
48 | + @TableField(value = "subcatalog") | |
49 | + @NotNull(message = "详细科目") | |
50 | + private String subcatalog; | |
51 | 51 | |
52 | 52 | /** |
53 | - * 科室登录密码 | |
53 | + * 科室介绍 | |
54 | 54 | */ |
55 | - @TableField(value = "dpasswd") | |
56 | - private String dpasswd; | |
55 | + @TableField(value = "intro") | |
56 | + private String intro; | |
57 | 57 | |
58 | 58 | /** |
59 | 59 | * 创建人 |
... | ... | @@ -103,8 +103,8 @@ |
103 | 103 | && (this.getDname() == null ? other.getDname() == null : this.getDname().equals(other.getDname())) |
104 | 104 | && (this.getHid() == null ? other.getHid() == null : this.getHid().equals(other.getHid())) |
105 | 105 | && (this.getHname() == null ? other.getHname() == null : this.getHname().equals(other.getHname())) |
106 | - && (this.getDusername() == null ? other.getDusername() == null : this.getDusername().equals(other.getDusername())) | |
107 | - && (this.getDpasswd() == null ? other.getDpasswd() == null : this.getDpasswd().equals(other.getDpasswd())) | |
106 | + && (this.getSubcatalog() == null ? other.getSubcatalog() == null : this.getSubcatalog().equals(other.getSubcatalog())) | |
107 | + && (this.getIntro() == null ? other.getIntro() == null : this.getIntro().equals(other.getIntro())) | |
108 | 108 | && (this.getCreatedby() == null ? other.getCreatedby() == null : this.getCreatedby().equals(other.getCreatedby())) |
109 | 109 | && (this.getCreatedtime() == null ? other.getCreatedtime() == null : this.getCreatedtime().equals(other.getCreatedtime())) |
110 | 110 | && (this.getUpdatedby() == null ? other.getUpdatedby() == null : this.getUpdatedby().equals(other.getUpdatedby())) |
... | ... | @@ -119,8 +119,8 @@ |
119 | 119 | result = prime * result + ((getDname() == null) ? 0 : getDname().hashCode()); |
120 | 120 | result = prime * result + ((getHid() == null) ? 0 : getHid().hashCode()); |
121 | 121 | result = prime * result + ((getHname() == null) ? 0 : getHname().hashCode()); |
122 | - result = prime * result + ((getDusername() == null) ? 0 : getDusername().hashCode()); | |
123 | - result = prime * result + ((getDpasswd() == null) ? 0 : getDpasswd().hashCode()); | |
122 | + result = prime * result + ((getSubcatalog() == null) ? 0 : getSubcatalog().hashCode()); | |
123 | + result = prime * result + ((getIntro() == null) ? 0 : getIntro().hashCode()); | |
124 | 124 | result = prime * result + ((getCreatedby() == null) ? 0 : getCreatedby().hashCode()); |
125 | 125 | result = prime * result + ((getCreatedtime() == null) ? 0 : getCreatedtime().hashCode()); |
126 | 126 | result = prime * result + ((getUpdatedby() == null) ? 0 : getUpdatedby().hashCode()); |
... | ... | @@ -138,8 +138,8 @@ |
138 | 138 | sb.append(", dname=").append(dname); |
139 | 139 | sb.append(", hid=").append(hid); |
140 | 140 | sb.append(", hname=").append(hname); |
141 | - sb.append(", dusername=").append(dusername); | |
142 | - sb.append(", dpasswd=").append(dpasswd); | |
141 | + sb.append(", subcatalog=").append(subcatalog); | |
142 | + sb.append(", intro=").append(intro); | |
143 | 143 | sb.append(", createdby=").append(createdby); |
144 | 144 | sb.append(", createdtime=").append(createdtime); |
145 | 145 | sb.append(", updatedby=").append(updatedby); |