Commit 9d9492b6754dae6fa91904e4b8db72e154e2d521
1 parent
a56b0feee9
Exists in
master
and in
1 other branch
增加
Showing 1 changed file with 6 additions and 6 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/SimpleVisit.java
View file @
9d9492b
| ... | ... | @@ -22,12 +22,12 @@ |
| 22 | 22 | /** |
| 23 | 23 | * 住院分娩 |
| 24 | 24 | */ |
| 25 | - private int due; | |
| 25 | + private Integer due; | |
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * 心法接生 |
| 29 | 29 | */ |
| 30 | - private int xinType; | |
| 30 | + private Integer xinType; | |
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | 33 | * 乳房 |
| 34 | 34 | |
| 35 | 35 | |
| 36 | 36 | |
| ... | ... | @@ -123,19 +123,19 @@ |
| 123 | 123 | this.numOfLive = numOfLive; |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - public int getDue() { | |
| 126 | + public Integer getDue() { | |
| 127 | 127 | return due; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - public void setDue(int due) { | |
| 130 | + public void setDue(Integer due) { | |
| 131 | 131 | this.due = due; |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | - public int getXinType() { | |
| 134 | + public Integer getXinType() { | |
| 135 | 135 | return xinType; |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | - public void setXinType(int xinType) { | |
| 138 | + public void setXinType(Integer xinType) { | |
| 139 | 139 | this.xinType = xinType; |
| 140 | 140 | } |
| 141 | 141 |