Commit 1c38d5e859d72442e90bb2beb8fbfeb0a30b4598

Authored by shiyang
1 parent 2d29590270

update

Showing 4 changed files with 80 additions and 80 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java View file @ 1c38d5e
... ... @@ -446,45 +446,45 @@
446 446 //秦皇岛定制字段:是否产筛 0:未产筛 1:已产筛
447 447 public Integer productionSieveType;
448 448 /** 秦皇岛6.6需求 */
449   - //身高
450   - private String height;
451   - //体重
452   - private String weight;
453   - //收缩压(高压)
454   - private String ssy;
455   - //舒张压(低压)
456   - private String szy;
  449 + //预约建档身高
  450 + private String qhdjdheight;
  451 + //预约建档孕前体重
  452 + private String qhdyqweight;
  453 + //预约建档收缩压(高压)
  454 + private String qhdjdssy;
  455 + //预约建档舒张压(低压)
  456 + private String qhdjdszy;
457 457  
458   - public String getHeight() {
459   - return height;
  458 + public String getQhdjdheight() {
  459 + return qhdjdheight;
460 460 }
461 461  
462   - public void setHeight(String height) {
463   - this.height = height;
  462 + public void setQhdjdheight(String qhdjdheight) {
  463 + this.qhdjdheight = qhdjdheight;
464 464 }
465 465  
466   - public String getWeight() {
467   - return weight;
  466 + public String getQhdyqweight() {
  467 + return qhdyqweight;
468 468 }
469 469  
470   - public void setWeight(String weight) {
471   - this.weight = weight;
  470 + public void setQhdyqweight(String qhdyqweight) {
  471 + this.qhdyqweight = qhdyqweight;
472 472 }
473 473  
474   - public String getSsy() {
475   - return ssy;
  474 + public String getQhdjdssy() {
  475 + return qhdjdssy;
476 476 }
477 477  
478   - public void setSsy(String ssy) {
479   - this.ssy = ssy;
  478 + public void setQhdjdssy(String qhdjdssy) {
  479 + this.qhdjdssy = qhdjdssy;
480 480 }
481 481  
482   - public String getSzy() {
483   - return szy;
  482 + public String getQhdjdszy() {
  483 + return qhdjdszy;
484 484 }
485 485  
486   - public void setSzy(String szy) {
487   - this.szy = szy;
  486 + public void setQhdjdszy(String qhdjdszy) {
  487 + this.qhdjdszy = qhdjdszy;
488 488 }
489 489  
490 490 public Integer getProductionSieveType() {
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java View file @ 1c38d5e
... ... @@ -2056,10 +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 + patient.setQhdjdheight(yunRequest.getQhdjdheight());
  2060 + patient.setQhdyqweight(yunRequest.getQhdyqweight());
  2061 + patient.setQhdjdssy(yunRequest.getQhdjdssy());
  2062 + patient.setQhdjdszy(yunRequest.getQhdjdszy());
2063 2063  
2064 2064 return patient;
2065 2065 }
... ... @@ -2294,10 +2294,10 @@
2294 2294 result.setHusbandName(p.getHusbandName());
2295 2295 result.setLiveCardNo(p.getLiveCardNo());
2296 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());
  2297 + result.setQhdjdheight(p.getQhdjdheight());
  2298 + result.setQhdyqweight(p.getQhdyqweight());
  2299 + result.setQhdjdssy(p.getQhdjdssy());
  2300 + result.setQhdjdszy(p.getQhdjdszy());
2301 2301  
2302 2302 return result;
2303 2303 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/YunBookbuildingAddRequest.java View file @ 1c38d5e
... ... @@ -531,45 +531,45 @@
531 531 private String recommend;
532 532  
533 533 /** 秦皇岛6.6需求 */
534   - //身高
535   - private String height;
536   - //体重
537   - private String weight;
538   - //收缩压(高压)
539   - private String ssy;
540   - //舒张压(低压)
541   - private String szy;
  534 + //预约建档身高
  535 + private String qhdjdheight;
  536 + //预约建档孕前体重
  537 + private String qhdyqweight;
  538 + //预约建档收缩压(高压)
  539 + private String qhdjdssy;
  540 + //预约建档舒张压(低压)
  541 + private String qhdjdszy;
542 542  
543   - public String getHeight() {
544   - return height;
  543 + public String getQhdjdheight() {
  544 + return qhdjdheight;
545 545 }
546 546  
547   - public void setHeight(String height) {
548   - this.height = height;
  547 + public void setQhdjdheight(String qhdjdheight) {
  548 + this.qhdjdheight = qhdjdheight;
549 549 }
550 550  
551   - public String getWeight() {
552   - return weight;
  551 + public String getQhdyqweight() {
  552 + return qhdyqweight;
553 553 }
554 554  
555   - public void setWeight(String weight) {
556   - this.weight = weight;
  555 + public void setQhdyqweight(String qhdyqweight) {
  556 + this.qhdyqweight = qhdyqweight;
557 557 }
558 558  
559   - public String getSsy() {
560   - return ssy;
  559 + public String getQhdjdssy() {
  560 + return qhdjdssy;
561 561 }
562 562  
563   - public void setSsy(String ssy) {
564   - this.ssy = ssy;
  563 + public void setQhdjdssy(String qhdjdssy) {
  564 + this.qhdjdssy = qhdjdssy;
565 565 }
566 566  
567   - public String getSzy() {
568   - return szy;
  567 + public String getQhdjdszy() {
  568 + return qhdjdszy;
569 569 }
570 570  
571   - public void setSzy(String szy) {
572   - this.szy = szy;
  571 + public void setQhdjdszy(String qhdjdszy) {
  572 + this.qhdjdszy = qhdjdszy;
573 573 }
574 574  
575 575 public String getRecommend() {
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java View file @ 1c38d5e
... ... @@ -471,45 +471,45 @@
471 471 private String recommend;
472 472  
473 473 /** 秦皇岛6.6需求 */
474   - //身高
475   - private String height;
476   - //体重
477   - private String weight;
478   - //收缩压(高压)
479   - private String ssy;
480   - //舒张压(低压)
481   - private String szy;
  474 + //预约建档身高
  475 + private String qhdjdheight;
  476 + //预约建档孕前体重
  477 + private String qhdyqweight;
  478 + //预约建档收缩压(高压)
  479 + private String qhdjdssy;
  480 + //预约建档舒张压(低压)
  481 + private String qhdjdszy;
482 482  
483   - public String getHeight() {
484   - return height;
  483 + public String getQhdjdheight() {
  484 + return qhdjdheight;
485 485 }
486 486  
487   - public void setHeight(String height) {
488   - this.height = height;
  487 + public void setQhdjdheight(String qhdjdheight) {
  488 + this.qhdjdheight = qhdjdheight;
489 489 }
490 490  
491   - public String getWeight() {
492   - return weight;
  491 + public String getQhdyqweight() {
  492 + return qhdyqweight;
493 493 }
494 494  
495   - public void setWeight(String weight) {
496   - this.weight = weight;
  495 + public void setQhdyqweight(String qhdyqweight) {
  496 + this.qhdyqweight = qhdyqweight;
497 497 }
498 498  
499   - public String getSsy() {
500   - return ssy;
  499 + public String getQhdjdssy() {
  500 + return qhdjdssy;
501 501 }
502 502  
503   - public void setSsy(String ssy) {
504   - this.ssy = ssy;
  503 + public void setQhdjdssy(String qhdjdssy) {
  504 + this.qhdjdssy = qhdjdssy;
505 505 }
506 506  
507   - public String getSzy() {
508   - return szy;
  507 + public String getQhdjdszy() {
  508 + return qhdjdszy;
509 509 }
510 510  
511   - public void setSzy(String szy) {
512   - this.szy = szy;
  511 + public void setQhdjdszy(String qhdjdszy) {
  512 + this.qhdjdszy = qhdjdszy;
513 513 }
514 514  
515 515 public String getRecommend() {