Commit f0b31336cf0e57911e971e260a10a26295fa818c
1 parent
4d92f13f36
Exists in
master
and in
1 other branch
add code
Showing 1 changed file with 4 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java
View file @
f0b3133
| ... | ... | @@ -112,8 +112,8 @@ |
| 112 | 112 | //服务状态 |
| 113 | 113 | private Integer serviceStatus; |
| 114 | 114 | |
| 115 | - //体验会员 false非会员 true会员 | |
| 116 | - private boolean expVip; | |
| 115 | + //体验会员 0非会员 1会员 | |
| 116 | + private Integer expVip; | |
| 117 | 117 | |
| 118 | 118 | //会员截止时间 |
| 119 | 119 | private String vipEndTime; |
| 120 | 120 | |
| ... | ... | @@ -138,11 +138,11 @@ |
| 138 | 138 | this.serviceStatus = serviceStatus; |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | - public boolean isExpVip() { | |
| 141 | + public Integer getExpVip() { | |
| 142 | 142 | return expVip; |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - public void setExpVip(boolean expVip) { | |
| 145 | + public void setExpVip(Integer expVip) { | |
| 146 | 146 | this.expVip = expVip; |
| 147 | 147 | } |
| 148 | 148 |