Commit d99e6aff35b8ddca8a6fe0905b780bdfb09b0a0e
1 parent
50b33374ce
Exists in
master
and in
6 other branches
改字段
Showing 1 changed file with 22 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java
View file @
d99e6af
| ... | ... | @@ -16,6 +16,28 @@ |
| 16 | 16 | |
| 17 | 17 | private static final long serialVersionUID = SerialIdEnum.Patients.getCid(); |
| 18 | 18 | |
| 19 | + // 月经周期开始天数 | |
| 20 | + private String mensStartDay; | |
| 21 | + | |
| 22 | + // 月经周期开始天数 | |
| 23 | + private String mensEndDay; | |
| 24 | + | |
| 25 | + public String getMensEndDay() { | |
| 26 | + return mensEndDay; | |
| 27 | + } | |
| 28 | + | |
| 29 | + public String getMensStartDay() { | |
| 30 | + return mensStartDay; | |
| 31 | + } | |
| 32 | + | |
| 33 | + public void setMensEndDay(String mensEndDay) { | |
| 34 | + this.mensEndDay = mensEndDay; | |
| 35 | + } | |
| 36 | + | |
| 37 | + public void setMensStartDay(String mensStartDay) { | |
| 38 | + this.mensStartDay = mensStartDay; | |
| 39 | + } | |
| 40 | + | |
| 19 | 41 | /** |
| 20 | 42 | * 身份证号码 |
| 21 | 43 | */ |