Commit ed91bcfe600ab41be0f28278c04e120f1c9f43d2
1 parent
b4394ec31c
Exists in
longhua
隆化,产检保存提示网络错误,无法保存,再次保存提示已保存,但是无信息
Showing 1 changed file with 31 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExAddRequest.java
View file @
ed91bcf
| ... | ... | @@ -18,6 +18,37 @@ |
| 18 | 18 | @Form |
| 19 | 19 | public class AntExAddRequest implements IBasicRequestConvert<AntenatalExaminationModel> { |
| 20 | 20 | |
| 21 | + // 身高 | |
| 22 | + private String height; | |
| 23 | + //孕前体重 | |
| 24 | + private String yqWeight; | |
| 25 | + //体重指数 | |
| 26 | + private String baricIndex; | |
| 27 | + | |
| 28 | + public String getHeight() { | |
| 29 | + return height; | |
| 30 | + } | |
| 31 | + | |
| 32 | + public void setHeight(String height) { | |
| 33 | + this.height = height; | |
| 34 | + } | |
| 35 | + | |
| 36 | + public String getYqWeight() { | |
| 37 | + return yqWeight; | |
| 38 | + } | |
| 39 | + | |
| 40 | + public void setYqWeight(String yqWeight) { | |
| 41 | + this.yqWeight = yqWeight; | |
| 42 | + } | |
| 43 | + | |
| 44 | + public String getBaricIndex() { | |
| 45 | + return baricIndex; | |
| 46 | + } | |
| 47 | + | |
| 48 | + public void setBaricIndex(String baricIndex) { | |
| 49 | + this.baricIndex = baricIndex; | |
| 50 | + } | |
| 51 | + | |
| 21 | 52 | //秦皇岛妇幼预约分娩医院 |
| 22 | 53 | private PatientRegistrationRequest registration; |
| 23 | 54 |