Commit 47d9f347a871276f7de8785c95e15ba2e23383f8

Authored by dongqin
1 parent 40fc6075cb

儿保检查添加异常和正常数

Showing 4 changed files with 81 additions and 1 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/BabyCheckModel.java View file @ 47d9f34
... ... @@ -421,6 +421,32 @@
421 421 */
422 422 private String eyeGuideSuggestions;
423 423  
  424 + /**
  425 + * 异常数
  426 + */
  427 + private Integer abnormalSize;
  428 +
  429 + /**
  430 + * OK数
  431 + */
  432 + private Integer okSize;
  433 +
  434 + public Integer getAbnormalSize() {
  435 + return abnormalSize;
  436 + }
  437 +
  438 + public void setAbnormalSize(Integer abnormalSize) {
  439 + this.abnormalSize = abnormalSize;
  440 + }
  441 +
  442 + public Integer getOkSize() {
  443 + return okSize;
  444 + }
  445 +
  446 + public void setOkSize(Integer okSize) {
  447 + this.okSize = okSize;
  448 + }
  449 +
424 450 public Integer getWaskSon() {
425 451 return waskSon;
426 452 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ 47d9f34
... ... @@ -4617,7 +4617,8 @@
4617 4617 // }
4618 4618 //
4619 4619 // }
4620   -
  4620 + model.setOkSize(checkModel.getOkSize());
  4621 + model.setAbnormalSize(checkModel.getAbnormalSize());
4621 4622 return model;
4622 4623  
4623 4624 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyCheckRequest.java View file @ 47d9f34
... ... @@ -386,6 +386,33 @@
386 386 */
387 387 private String eyeGuideSuggestions;
388 388  
  389 + /**
  390 + * 异常数
  391 + */
  392 + private Integer abnormalSize;
  393 +
  394 + /**
  395 + * OK数
  396 + */
  397 + private Integer okSize;
  398 +
  399 +
  400 + public Integer getAbnormalSize() {
  401 + return abnormalSize;
  402 + }
  403 +
  404 + public void setAbnormalSize(Integer abnormalSize) {
  405 + this.abnormalSize = abnormalSize;
  406 + }
  407 +
  408 + public Integer getOkSize() {
  409 + return okSize;
  410 + }
  411 +
  412 + public void setOkSize(Integer okSize) {
  413 + this.okSize = okSize;
  414 + }
  415 +
389 416 public String getEyeAppearance() {
390 417 return eyeAppearance;
391 418 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckPageResult.java View file @ 47d9f34
... ... @@ -469,6 +469,32 @@
469 469 */
470 470 private String eyeGuideSuggestions;
471 471  
  472 + /**
  473 + * 异常数
  474 + */
  475 + private Integer abnormalSize;
  476 +
  477 + /**
  478 + * OK数
  479 + */
  480 + private Integer okSize;
  481 +
  482 + public Integer getAbnormalSize() {
  483 + return abnormalSize;
  484 + }
  485 +
  486 + public void setAbnormalSize(Integer abnormalSize) {
  487 + this.abnormalSize = abnormalSize;
  488 + }
  489 +
  490 + public Integer getOkSize() {
  491 + return okSize;
  492 + }
  493 +
  494 + public void setOkSize(Integer okSize) {
  495 + this.okSize = okSize;
  496 + }
  497 +
472 498 public String getEyeAdviceName() {
473 499 return eyeAdviceName;
474 500 }