Commit 2d29590270a1243c079ecf8ef75a09e1e752ad16
1 parent
09bc0c422b
Exists in
master
and in
6 other branches
孕产-秦皇岛预约建档增加字段-身高、体重、血压
Showing 4 changed files with 133 additions and 0 deletions
- platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/YunBookbuildingAddRequest.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java
platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java
View file @
2d29590
| ... | ... | @@ -445,6 +445,47 @@ |
| 445 | 445 | private String recommend; |
| 446 | 446 | //秦皇岛定制字段:是否产筛 0:未产筛 1:已产筛 |
| 447 | 447 | public Integer productionSieveType; |
| 448 | + /** 秦皇岛6.6需求 */ | |
| 449 | + //身高 | |
| 450 | + private String height; | |
| 451 | + //体重 | |
| 452 | + private String weight; | |
| 453 | + //收缩压(高压) | |
| 454 | + private String ssy; | |
| 455 | + //舒张压(低压) | |
| 456 | + private String szy; | |
| 457 | + | |
| 458 | + public String getHeight() { | |
| 459 | + return height; | |
| 460 | + } | |
| 461 | + | |
| 462 | + public void setHeight(String height) { | |
| 463 | + this.height = height; | |
| 464 | + } | |
| 465 | + | |
| 466 | + public String getWeight() { | |
| 467 | + return weight; | |
| 468 | + } | |
| 469 | + | |
| 470 | + public void setWeight(String weight) { | |
| 471 | + this.weight = weight; | |
| 472 | + } | |
| 473 | + | |
| 474 | + public String getSsy() { | |
| 475 | + return ssy; | |
| 476 | + } | |
| 477 | + | |
| 478 | + public void setSsy(String ssy) { | |
| 479 | + this.ssy = ssy; | |
| 480 | + } | |
| 481 | + | |
| 482 | + public String getSzy() { | |
| 483 | + return szy; | |
| 484 | + } | |
| 485 | + | |
| 486 | + public void setSzy(String szy) { | |
| 487 | + this.szy = szy; | |
| 488 | + } | |
| 448 | 489 | |
| 449 | 490 | public Integer getProductionSieveType() { |
| 450 | 491 | return productionSieveType; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
2d29590
| ... | ... | @@ -2056,6 +2056,10 @@ |
| 2056 | 2056 | patient.setHusVerifType(yunRequest.getHusVerifType()); |
| 2057 | 2057 | patient.setLiveCardNo(yunRequest.getLiveCardNo()); |
| 2058 | 2058 | patient.setRecommend(yunRequest.getRecommend()); |
| 2059 | + patient.setHeight(yunRequest.getHeight()); | |
| 2060 | + patient.setWeight(yunRequest.getWeight()); | |
| 2061 | + patient.setSsy(yunRequest.getSsy()); | |
| 2062 | + patient.setSzy(yunRequest.getSzy()); | |
| 2059 | 2063 | |
| 2060 | 2064 | return patient; |
| 2061 | 2065 | } |
| ... | ... | @@ -2290,6 +2294,10 @@ |
| 2290 | 2294 | result.setHusbandName(p.getHusbandName()); |
| 2291 | 2295 | result.setLiveCardNo(p.getLiveCardNo()); |
| 2292 | 2296 | result.setRecommend(p.getRecommend()); |
| 2297 | + result.setHeight(p.getHeight()); | |
| 2298 | + result.setWeight(p.getWeight()); | |
| 2299 | + result.setSsy(p.getSsy()); | |
| 2300 | + result.setSzy(p.getSzy()); | |
| 2293 | 2301 | |
| 2294 | 2302 | return result; |
| 2295 | 2303 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/YunBookbuildingAddRequest.java
View file @
2d29590
| ... | ... | @@ -530,6 +530,48 @@ |
| 530 | 530 | //推荐人 |
| 531 | 531 | private String recommend; |
| 532 | 532 | |
| 533 | + /** 秦皇岛6.6需求 */ | |
| 534 | + //身高 | |
| 535 | + private String height; | |
| 536 | + //体重 | |
| 537 | + private String weight; | |
| 538 | + //收缩压(高压) | |
| 539 | + private String ssy; | |
| 540 | + //舒张压(低压) | |
| 541 | + private String szy; | |
| 542 | + | |
| 543 | + public String getHeight() { | |
| 544 | + return height; | |
| 545 | + } | |
| 546 | + | |
| 547 | + public void setHeight(String height) { | |
| 548 | + this.height = height; | |
| 549 | + } | |
| 550 | + | |
| 551 | + public String getWeight() { | |
| 552 | + return weight; | |
| 553 | + } | |
| 554 | + | |
| 555 | + public void setWeight(String weight) { | |
| 556 | + this.weight = weight; | |
| 557 | + } | |
| 558 | + | |
| 559 | + public String getSsy() { | |
| 560 | + return ssy; | |
| 561 | + } | |
| 562 | + | |
| 563 | + public void setSsy(String ssy) { | |
| 564 | + this.ssy = ssy; | |
| 565 | + } | |
| 566 | + | |
| 567 | + public String getSzy() { | |
| 568 | + return szy; | |
| 569 | + } | |
| 570 | + | |
| 571 | + public void setSzy(String szy) { | |
| 572 | + this.szy = szy; | |
| 573 | + } | |
| 574 | + | |
| 533 | 575 | public String getRecommend() { |
| 534 | 576 | return recommend; |
| 535 | 577 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java
View file @
2d29590
| ... | ... | @@ -470,6 +470,48 @@ |
| 470 | 470 | //推荐人 |
| 471 | 471 | private String recommend; |
| 472 | 472 | |
| 473 | + /** 秦皇岛6.6需求 */ | |
| 474 | + //身高 | |
| 475 | + private String height; | |
| 476 | + //体重 | |
| 477 | + private String weight; | |
| 478 | + //收缩压(高压) | |
| 479 | + private String ssy; | |
| 480 | + //舒张压(低压) | |
| 481 | + private String szy; | |
| 482 | + | |
| 483 | + public String getHeight() { | |
| 484 | + return height; | |
| 485 | + } | |
| 486 | + | |
| 487 | + public void setHeight(String height) { | |
| 488 | + this.height = height; | |
| 489 | + } | |
| 490 | + | |
| 491 | + public String getWeight() { | |
| 492 | + return weight; | |
| 493 | + } | |
| 494 | + | |
| 495 | + public void setWeight(String weight) { | |
| 496 | + this.weight = weight; | |
| 497 | + } | |
| 498 | + | |
| 499 | + public String getSsy() { | |
| 500 | + return ssy; | |
| 501 | + } | |
| 502 | + | |
| 503 | + public void setSsy(String ssy) { | |
| 504 | + this.ssy = ssy; | |
| 505 | + } | |
| 506 | + | |
| 507 | + public String getSzy() { | |
| 508 | + return szy; | |
| 509 | + } | |
| 510 | + | |
| 511 | + public void setSzy(String szy) { | |
| 512 | + this.szy = szy; | |
| 513 | + } | |
| 514 | + | |
| 473 | 515 | public String getRecommend() { |
| 474 | 516 | return recommend; |
| 475 | 517 | } |