Commit 36e6d390ccd7b5cebd48af0fbb2ed365d53ccad5
1 parent
9d1f77fb71
Exists in
master
and in
6 other branches
产筛
Showing 1 changed file with 11 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientBaseResult.java
View file @
36e6d39
| ... | ... | @@ -53,6 +53,16 @@ |
| 53 | 53 | |
| 54 | 54 | private String birth; |
| 55 | 55 | |
| 56 | + private String sex; | |
| 57 | + | |
| 58 | + public String getSex() { | |
| 59 | + return sex; | |
| 60 | + } | |
| 61 | + | |
| 62 | + public void setSex(String sex) { | |
| 63 | + this.sex = sex; | |
| 64 | + } | |
| 65 | + | |
| 56 | 66 | public String getBirth() { |
| 57 | 67 | return birth; |
| 58 | 68 | } |
| ... | ... | @@ -215,6 +225,7 @@ |
| 215 | 225 | setLastMenses(DateUtil.getyyyy_MM_dd(patients.getLastMenses())); |
| 216 | 226 | } |
| 217 | 227 | |
| 228 | + setSex("女"); | |
| 218 | 229 | |
| 219 | 230 | return this; |
| 220 | 231 | } |