Commit d66ff6586d3d628f4c847abf4295e76f228b0a63
1 parent
2adcf808db
Exists in
master
and in
1 other branch
update
Showing 1 changed file with 18 additions and 0 deletions
talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/ArticleInfo.java
View file @
d66ff65
... | ... | @@ -144,6 +144,24 @@ |
144 | 144 | @TableField(exist = false) |
145 | 145 | private static final long serialVersionUID = 1L; |
146 | 146 | |
147 | + /** | |
148 | + * 每个疾病文章的序号(1-100) | |
149 | + */ | |
150 | + @TableField(value = "serial_number") | |
151 | + private Integer serialNumber; | |
152 | + | |
153 | + /** | |
154 | + * 短文字1(公众号推送内容) | |
155 | + */ | |
156 | + @TableField(value = "weix_text_one") | |
157 | + private String weixTextOne; | |
158 | + | |
159 | + /** | |
160 | + * 短文字2(公众号推送内容) | |
161 | + */ | |
162 | + @TableField(value = "weix_text_two") | |
163 | + private String weixTextTwo; | |
164 | + | |
147 | 165 | @Override |
148 | 166 | public boolean equals(Object that) { |
149 | 167 | if (this == that) { |