Commit bc6fc6142a21afd26e91dea9faef435a7f4c40de

Authored by shiyang
1 parent e71a3d3bf8

滦平-儿童检查3-6月龄辅助检查增加两个项目

Showing 6 changed files with 116 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/BabyCheckModel.java View file @ bc6fc61
... ... @@ -598,6 +598,29 @@
598 598 }
599 599 /***********************************************************/
600 600  
  601 + /**
  602 + * 滦平-儿童检查3-6月龄套餐增加:
  603 + * 氟化防龋治疗 1 筛查 2 未筛查。
  604 + * 一般细菌培养: 1 筛查 2 未筛查
  605 + */
  606 + private Integer fhfz;
  607 + private Integer ybxj;
  608 +
  609 + public Integer getFhfz() {
  610 + return fhfz;
  611 + }
  612 +
  613 + public void setFhfz(Integer fhfz) {
  614 + this.fhfz = fhfz;
  615 + }
  616 +
  617 + public Integer getYbxj() {
  618 + return ybxj;
  619 + }
  620 +
  621 + public void setYbxj(Integer ybxj) {
  622 + this.ybxj = ybxj;
  623 + }
601 624 public Integer getCheckDay() {
602 625 return checkDay;
603 626 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java View file @ bc6fc61
... ... @@ -615,6 +615,13 @@
615 615 model.setScreeningOther(StringUtils.isNotEmpty(request.getScreeningOther())?request.getScreeningOther():"");
616 616 //秦皇岛-儿保检查-高危儿详情
617 617 model.setQhdHighRiskInfo(CollectionUtils.isNotEmpty(request.getQhdHighRiskInfo())?request.getQhdHighRiskInfo():null);
  618 + //滦平-滦平-儿童检查3-6月龄套餐增加,氟化防龋治疗,一般细菌培养
  619 + if(null!=request.getFhfz()){
  620 + model.setFhfz(request.getFhfz());
  621 + }
  622 + if(null!=request.getYbxj()){
  623 + model.setYbxj(request.getYbxj());
  624 + }
618 625  
619 626 return model;
620 627 }
... ... @@ -2491,6 +2498,14 @@
2491 2498 model.setScreeningOther(StringUtils.isNotEmpty(checkModel.getScreeningOther())?checkModel.getScreeningOther():"");
2492 2499 //秦皇岛-新高危儿详情
2493 2500 model.setQhdHighRiskInfo(CollectionUtils.isNotEmpty(checkModel.getQhdHighRiskInfo())?checkModel.getQhdHighRiskInfo():null);
  2501 + //滦平-滦平-儿童检查3-6月龄套餐增加,氟化防龋治疗,一般细菌培养
  2502 + if(null!=checkModel.getFhfz()){
  2503 + model.setFhfz(checkModel.getFhfz());
  2504 + }
  2505 + if(null!=checkModel.getYbxj()){
  2506 + model.setYbxj(checkModel.getYbxj());
  2507 + }
  2508 +
2494 2509 return model;
2495 2510  
2496 2511 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ bc6fc61
... ... @@ -6355,6 +6355,13 @@
6355 6355  
6356 6356 //秦皇岛-高危儿详情
6357 6357 model.setQhdHighRiskInfo(CollectionUtils.isNotEmpty(checkModel.getQhdHighRiskInfo())?checkModel.getQhdHighRiskInfo():null);
  6358 + //滦平-滦平-儿童检查3-6月龄套餐增加,氟化防龋治疗,一般细菌培养
  6359 + if(null!=checkModel.getFhfz()){
  6360 + model.setFhfz(checkModel.getFhfz());
  6361 + }
  6362 + if(null!=checkModel.getYbxj()){
  6363 + model.setYbxj(checkModel.getYbxj());
  6364 + }
6358 6365  
6359 6366 return model;
6360 6367  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyCheckRequest.java View file @ bc6fc61
... ... @@ -560,6 +560,30 @@
560 560 }
561 561 /***********************************************************/
562 562  
  563 + /**
  564 + * 滦平-儿童检查3-6月龄套餐增加:
  565 + * 氟化防龋治疗 1 筛查 2 未筛查。
  566 + * 一般细菌培养: 1 筛查 2 未筛查
  567 + */
  568 + private Integer fhfz;
  569 + private Integer ybxj;
  570 +
  571 + public Integer getFhfz() {
  572 + return fhfz;
  573 + }
  574 +
  575 + public void setFhfz(Integer fhfz) {
  576 + this.fhfz = fhfz;
  577 + }
  578 +
  579 + public Integer getYbxj() {
  580 + return ybxj;
  581 + }
  582 +
  583 + public void setYbxj(Integer ybxj) {
  584 + this.ybxj = ybxj;
  585 + }
  586 +
563 587 public String getTcmGuide() {
564 588 return tcmGuide;
565 589 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckPageResult.java View file @ bc6fc61
... ... @@ -776,6 +776,30 @@
776 776 }
777 777 /***********************************************************/
778 778  
  779 + /**
  780 + * 滦平-儿童检查3-6月龄套餐增加:
  781 + * 氟化防龋治疗 1 筛查 2 未筛查。
  782 + * 一般细菌培养: 1 筛查 2 未筛查
  783 + */
  784 + private Integer fhfz;
  785 + private Integer ybxj;
  786 +
  787 + public Integer getFhfz() {
  788 + return fhfz;
  789 + }
  790 +
  791 + public void setFhfz(Integer fhfz) {
  792 + this.fhfz = fhfz;
  793 + }
  794 +
  795 + public Integer getYbxj() {
  796 + return ybxj;
  797 + }
  798 +
  799 + public void setYbxj(Integer ybxj) {
  800 + this.ybxj = ybxj;
  801 + }
  802 +
779 803 public String getTcmGuide() {
780 804 return tcmGuide;
781 805 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckResult.java View file @ bc6fc61
... ... @@ -799,6 +799,29 @@
799 799 this.qhdHighRiskInfo = qhdHighRiskInfo;
800 800 }
801 801 /***********************************************************/
  802 + /**
  803 + * 滦平-儿童检查3-6月龄套餐增加:
  804 + * 氟化防龋治疗 1 筛查 2 未筛查。
  805 + * 一般细菌培养: 1 筛查 2 未筛查
  806 + */
  807 + private Integer fhfz;
  808 + private Integer ybxj;
  809 +
  810 + public Integer getFhfz() {
  811 + return fhfz;
  812 + }
  813 +
  814 + public void setFhfz(Integer fhfz) {
  815 + this.fhfz = fhfz;
  816 + }
  817 +
  818 + public Integer getYbxj() {
  819 + return ybxj;
  820 + }
  821 +
  822 + public void setYbxj(Integer ybxj) {
  823 + this.ybxj = ybxj;
  824 + }
802 825  
803 826 public String getExerciseIA() {
804 827 return exerciseIA;