Commit 6e894eab23abb67591c8f4698fd4f89e64d747a4
1 parent
544a609f7e
Exists in
master
and in
8 other branches
增加权限
Showing 1 changed file with 17 additions and 15 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/VisitAddRequest.java
View file @
6e894ea
... | ... | @@ -129,7 +129,7 @@ |
129 | 129 | /** |
130 | 130 | * 检查时间 |
131 | 131 | */ |
132 | - private String checktime; | |
132 | + private String checkTime; | |
133 | 133 | |
134 | 134 | /** |
135 | 135 | * 分娩后的天数 |
... | ... | @@ -165,7 +165,7 @@ |
165 | 165 | /** |
166 | 166 | * 下次访问时间 |
167 | 167 | */ |
168 | - private String nextvisit; | |
168 | + private String nextVisit; | |
169 | 169 | |
170 | 170 | /** |
171 | 171 | * 其他 |
172 | 172 | |
... | ... | @@ -298,13 +298,7 @@ |
298 | 298 | this.breast = breast; |
299 | 299 | } |
300 | 300 | |
301 | - public String getChecktime() { | |
302 | - return checktime; | |
303 | - } | |
304 | 301 | |
305 | - public void setChecktime(String checktime) { | |
306 | - this.checktime = checktime; | |
307 | - } | |
308 | 302 | |
309 | 303 | /* public String getDays() { |
310 | 304 | return days;*/ |
311 | 305 | |
312 | 306 | |
... | ... | @@ -370,14 +364,22 @@ |
370 | 364 | this.mentality = mentality; |
371 | 365 | } |
372 | 366 | |
373 | - public String getNextvisit() { | |
374 | - return nextvisit; | |
367 | + public String getCheckTime() { | |
368 | + return checkTime; | |
375 | 369 | } |
376 | 370 | |
377 | - public void setNextvisit(String nextvisit) { | |
378 | - this.nextvisit = nextvisit; | |
371 | + public void setCheckTime(String checkTime) { | |
372 | + this.checkTime = checkTime; | |
379 | 373 | } |
380 | 374 | |
375 | + public String getNextVisit() { | |
376 | + return nextVisit; | |
377 | + } | |
378 | + | |
379 | + public void setNextVisit(String nextVisit) { | |
380 | + this.nextVisit = nextVisit; | |
381 | + } | |
382 | + | |
381 | 383 | public String getOther() { |
382 | 384 | return other; |
383 | 385 | } |
384 | 386 | |
... | ... | @@ -514,15 +516,15 @@ |
514 | 516 | } |
515 | 517 | |
516 | 518 | visit.setBreast(breast); |
517 | - visit.setChecktime(checktime); | |
518 | - visit.setDays((DateUtil.getDays(DateUtil.parseYMD(dueDate), DateUtil.parseYMD(checktime)) + 1) + ""); | |
519 | + visit.setChecktime(checkTime); | |
520 | + visit.setDays((DateUtil.getDays(DateUtil.parseYMD(dueDate), DateUtil.parseYMD(checkTime)) + 1) + ""); | |
519 | 521 | visit.setDoctorsign(doctorsign); |
520 | 522 | visit.setDue(due); |
521 | 523 | visit.setHealth(health); |
522 | 524 | visit.setLochia(lochia); |
523 | 525 | visit.setMatrix(matrix); |
524 | 526 | visit.setMentality(mentality); |
525 | - visit.setNextvisit(nextvisit); | |
527 | + visit.setNextvisit(nextVisit); | |
526 | 528 | visit.setNumOfLive(numOfLive); |
527 | 529 | visit.setOther(other); |
528 | 530 |