Commit 2a08f11ba933c8f199c9d52409c6e2d7fbde74ae
1 parent
c8273d7a
人员表添加 destroy 停用字段
Showing
1 changed file
with
12 additions
and
0 deletions
src/main/java/com/bsth/entity/Personnel.java
| ... | ... | @@ -66,6 +66,10 @@ public class Personnel extends BEntity { |
| 66 | 66 | /** 身份证 */ |
| 67 | 67 | private String card; |
| 68 | 68 | |
| 69 | + /** | |
| 70 | + * 0为在职,1为停用 | |
| 71 | + */ | |
| 72 | + private Integer destroy; | |
| 69 | 73 | |
| 70 | 74 | /** 备注 */ |
| 71 | 75 | private String remark; |
| ... | ... | @@ -254,4 +258,12 @@ public class Personnel extends BEntity { |
| 254 | 258 | public void setRemark(String remark) { |
| 255 | 259 | this.remark = remark; |
| 256 | 260 | } |
| 261 | + | |
| 262 | + public Integer getDestroy() { | |
| 263 | + return destroy; | |
| 264 | + } | |
| 265 | + | |
| 266 | + public void setDestroy(Integer destroy) { | |
| 267 | + this.destroy = destroy; | |
| 268 | + } | |
| 257 | 269 | } | ... | ... |