Commit 431e9f12455814b8659c748387fde3f02d9183f4
1 parent
84107c1379
Exists in
master
and in
6 other branches
儿心量表业务添加
Showing 5 changed files with 352 additions and 1 deletions
- platform-dal/src/main/java/com/lyms/platform/pojo/BabyCheckModel.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyCheckRequest.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckPageResult.java
platform-dal/src/main/java/com/lyms/platform/pojo/BabyCheckModel.java
View file @
431e9f1
| ... | ... | @@ -431,6 +431,116 @@ |
| 431 | 431 | */ |
| 432 | 432 | private Integer okSize; |
| 433 | 433 | |
| 434 | + /** | |
| 435 | + * 运动 智龄、发育商 | |
| 436 | + */ | |
| 437 | + private String exerciseIA; | |
| 438 | + private String exerciseDQ ; | |
| 439 | + | |
| 440 | + /** | |
| 441 | + * 动作 | |
| 442 | + */ | |
| 443 | + private String movementIA; | |
| 444 | + private String movementDQ; | |
| 445 | + | |
| 446 | + /** | |
| 447 | + * 适应 | |
| 448 | + */ | |
| 449 | + private String adaptationIA; | |
| 450 | + private String adaptationDQ ; | |
| 451 | + | |
| 452 | + /** | |
| 453 | + * 语言 | |
| 454 | + */ | |
| 455 | + private String languageIA; | |
| 456 | + private String languageDQ; | |
| 457 | + | |
| 458 | + /** | |
| 459 | + * 社交 | |
| 460 | + */ | |
| 461 | + private String socialContactIA; | |
| 462 | + private String socialContactDQ; | |
| 463 | + | |
| 464 | + public String getExerciseIA() { | |
| 465 | + return exerciseIA; | |
| 466 | + } | |
| 467 | + | |
| 468 | + public void setExerciseIA(String exerciseIA) { | |
| 469 | + this.exerciseIA = exerciseIA; | |
| 470 | + } | |
| 471 | + | |
| 472 | + public String getExerciseDQ() { | |
| 473 | + return exerciseDQ; | |
| 474 | + } | |
| 475 | + | |
| 476 | + public void setExerciseDQ(String exerciseDQ) { | |
| 477 | + this.exerciseDQ = exerciseDQ; | |
| 478 | + } | |
| 479 | + | |
| 480 | + public String getMovementIA() { | |
| 481 | + return movementIA; | |
| 482 | + } | |
| 483 | + | |
| 484 | + public void setMovementIA(String movementIA) { | |
| 485 | + this.movementIA = movementIA; | |
| 486 | + } | |
| 487 | + | |
| 488 | + public String getMovementDQ() { | |
| 489 | + return movementDQ; | |
| 490 | + } | |
| 491 | + | |
| 492 | + public void setMovementDQ(String movementDQ) { | |
| 493 | + this.movementDQ = movementDQ; | |
| 494 | + } | |
| 495 | + | |
| 496 | + public String getAdaptationIA() { | |
| 497 | + return adaptationIA; | |
| 498 | + } | |
| 499 | + | |
| 500 | + public void setAdaptationIA(String adaptationIA) { | |
| 501 | + this.adaptationIA = adaptationIA; | |
| 502 | + } | |
| 503 | + | |
| 504 | + public String getAdaptationDQ() { | |
| 505 | + return adaptationDQ; | |
| 506 | + } | |
| 507 | + | |
| 508 | + public void setAdaptationDQ(String adaptationDQ) { | |
| 509 | + this.adaptationDQ = adaptationDQ; | |
| 510 | + } | |
| 511 | + | |
| 512 | + public String getLanguageIA() { | |
| 513 | + return languageIA; | |
| 514 | + } | |
| 515 | + | |
| 516 | + public void setLanguageIA(String languageIA) { | |
| 517 | + this.languageIA = languageIA; | |
| 518 | + } | |
| 519 | + | |
| 520 | + public String getLanguageDQ() { | |
| 521 | + return languageDQ; | |
| 522 | + } | |
| 523 | + | |
| 524 | + public void setLanguageDQ(String languageDQ) { | |
| 525 | + this.languageDQ = languageDQ; | |
| 526 | + } | |
| 527 | + | |
| 528 | + public String getSocialContactIA() { | |
| 529 | + return socialContactIA; | |
| 530 | + } | |
| 531 | + | |
| 532 | + public void setSocialContactIA(String socialContactIA) { | |
| 533 | + this.socialContactIA = socialContactIA; | |
| 534 | + } | |
| 535 | + | |
| 536 | + public String getSocialContactDQ() { | |
| 537 | + return socialContactDQ; | |
| 538 | + } | |
| 539 | + | |
| 540 | + public void setSocialContactDQ(String socialContactDQ) { | |
| 541 | + this.socialContactDQ = socialContactDQ; | |
| 542 | + } | |
| 543 | + | |
| 434 | 544 | public Integer getAbnormalSize() { |
| 435 | 545 | return abnormalSize; |
| 436 | 546 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
431e9f1
| ... | ... | @@ -446,7 +446,16 @@ |
| 446 | 446 | model.setAbnormalSize(abnormalSize); |
| 447 | 447 | } |
| 448 | 448 | //新加字段 |
| 449 | - | |
| 449 | + model.setAdaptationIA(request.getAdaptationIA()); | |
| 450 | + model.setExerciseIA(request.getExerciseIA()); | |
| 451 | + model.setLanguageIA(request.getLanguageIA()); | |
| 452 | + model.setMovementIA(request.getMovementIA()); | |
| 453 | + model.setSocialContactIA(request.getSocialContactIA()); | |
| 454 | + model.setAdaptationDQ(request.getAdaptationDQ()); | |
| 455 | + model.setExerciseDQ(request.getExerciseDQ()); | |
| 456 | + model.setLanguageDQ(request.getLanguageDQ()); | |
| 457 | + model.setMovementDQ(request.getMovementDQ()); | |
| 458 | + model.setSocialContactDQ(request.getSocialContactDQ()); | |
| 450 | 459 | |
| 451 | 460 | return model; |
| 452 | 461 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
431e9f1
| ... | ... | @@ -4664,6 +4664,19 @@ |
| 4664 | 4664 | // } |
| 4665 | 4665 | model.setOkSize(checkModel.getOkSize()); |
| 4666 | 4666 | model.setAbnormalSize(checkModel.getAbnormalSize()); |
| 4667 | + | |
| 4668 | + model.setAdaptationIA(checkModel.getAdaptationIA()); | |
| 4669 | + model.setExerciseIA(checkModel.getExerciseIA()); | |
| 4670 | + model.setLanguageIA(checkModel.getLanguageIA()); | |
| 4671 | + model.setMovementIA(checkModel.getMovementIA()); | |
| 4672 | + model.setSocialContactIA(checkModel.getSocialContactIA()); | |
| 4673 | + | |
| 4674 | + model.setAdaptationDQ(checkModel.getAdaptationDQ()); | |
| 4675 | + model.setExerciseDQ(checkModel.getExerciseDQ()); | |
| 4676 | + model.setLanguageDQ(checkModel.getLanguageDQ()); | |
| 4677 | + model.setMovementDQ(checkModel.getMovementDQ()); | |
| 4678 | + model.setSocialContactDQ(checkModel.getSocialContactDQ()); | |
| 4679 | + | |
| 4667 | 4680 | return model; |
| 4668 | 4681 | |
| 4669 | 4682 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyCheckRequest.java
View file @
431e9f1
| ... | ... | @@ -396,6 +396,115 @@ |
| 396 | 396 | */ |
| 397 | 397 | private Integer okSize; |
| 398 | 398 | |
| 399 | + /** | |
| 400 | + * 运动 智龄、发育商 | |
| 401 | + */ | |
| 402 | + private String exerciseIA; | |
| 403 | + private String exerciseDQ ; | |
| 404 | + | |
| 405 | + /** | |
| 406 | + * 动作 | |
| 407 | + */ | |
| 408 | + private String movementIA; | |
| 409 | + private String movementDQ; | |
| 410 | + | |
| 411 | + /** | |
| 412 | + * 适应 | |
| 413 | + */ | |
| 414 | + private String adaptationIA; | |
| 415 | + private String adaptationDQ ; | |
| 416 | + | |
| 417 | + /** | |
| 418 | + * 语言 | |
| 419 | + */ | |
| 420 | + private String languageIA; | |
| 421 | + private String languageDQ; | |
| 422 | + | |
| 423 | + /** | |
| 424 | + * 社交 | |
| 425 | + */ | |
| 426 | + private String socialContactIA; | |
| 427 | + private String socialContactDQ; | |
| 428 | + | |
| 429 | + public String getExerciseIA() { | |
| 430 | + return exerciseIA; | |
| 431 | + } | |
| 432 | + | |
| 433 | + public void setExerciseIA(String exerciseIA) { | |
| 434 | + this.exerciseIA = exerciseIA; | |
| 435 | + } | |
| 436 | + | |
| 437 | + public String getExerciseDQ() { | |
| 438 | + return exerciseDQ; | |
| 439 | + } | |
| 440 | + | |
| 441 | + public void setExerciseDQ(String exerciseDQ) { | |
| 442 | + this.exerciseDQ = exerciseDQ; | |
| 443 | + } | |
| 444 | + | |
| 445 | + public String getMovementIA() { | |
| 446 | + return movementIA; | |
| 447 | + } | |
| 448 | + | |
| 449 | + public void setMovementIA(String movementIA) { | |
| 450 | + this.movementIA = movementIA; | |
| 451 | + } | |
| 452 | + | |
| 453 | + public String getMovementDQ() { | |
| 454 | + return movementDQ; | |
| 455 | + } | |
| 456 | + | |
| 457 | + public void setMovementDQ(String movementDQ) { | |
| 458 | + this.movementDQ = movementDQ; | |
| 459 | + } | |
| 460 | + | |
| 461 | + public String getAdaptationIA() { | |
| 462 | + return adaptationIA; | |
| 463 | + } | |
| 464 | + | |
| 465 | + public void setAdaptationIA(String adaptationIA) { | |
| 466 | + this.adaptationIA = adaptationIA; | |
| 467 | + } | |
| 468 | + | |
| 469 | + public String getAdaptationDQ() { | |
| 470 | + return adaptationDQ; | |
| 471 | + } | |
| 472 | + | |
| 473 | + public void setAdaptationDQ(String adaptationDQ) { | |
| 474 | + this.adaptationDQ = adaptationDQ; | |
| 475 | + } | |
| 476 | + | |
| 477 | + public String getLanguageIA() { | |
| 478 | + return languageIA; | |
| 479 | + } | |
| 480 | + | |
| 481 | + public void setLanguageIA(String languageIA) { | |
| 482 | + this.languageIA = languageIA; | |
| 483 | + } | |
| 484 | + | |
| 485 | + public String getLanguageDQ() { | |
| 486 | + return languageDQ; | |
| 487 | + } | |
| 488 | + | |
| 489 | + public void setLanguageDQ(String languageDQ) { | |
| 490 | + this.languageDQ = languageDQ; | |
| 491 | + } | |
| 492 | + | |
| 493 | + public String getSocialContactIA() { | |
| 494 | + return socialContactIA; | |
| 495 | + } | |
| 496 | + | |
| 497 | + public void setSocialContactIA(String socialContactIA) { | |
| 498 | + this.socialContactIA = socialContactIA; | |
| 499 | + } | |
| 500 | + | |
| 501 | + public String getSocialContactDQ() { | |
| 502 | + return socialContactDQ; | |
| 503 | + } | |
| 504 | + | |
| 505 | + public void setSocialContactDQ(String socialContactDQ) { | |
| 506 | + this.socialContactDQ = socialContactDQ; | |
| 507 | + } | |
| 399 | 508 | |
| 400 | 509 | public Integer getAbnormalSize() { |
| 401 | 510 | return abnormalSize; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckPageResult.java
View file @
431e9f1
| ... | ... | @@ -479,6 +479,116 @@ |
| 479 | 479 | */ |
| 480 | 480 | private Integer okSize; |
| 481 | 481 | |
| 482 | + /** | |
| 483 | + * 运动 智龄、发育商 | |
| 484 | + */ | |
| 485 | + private String exerciseIA; | |
| 486 | + private String exerciseDQ ; | |
| 487 | + | |
| 488 | + /** | |
| 489 | + * 动作 | |
| 490 | + */ | |
| 491 | + private String movementIA; | |
| 492 | + private String movementDQ; | |
| 493 | + | |
| 494 | + /** | |
| 495 | + * 适应 | |
| 496 | + */ | |
| 497 | + private String adaptationIA; | |
| 498 | + private String adaptationDQ ; | |
| 499 | + | |
| 500 | + /** | |
| 501 | + * 语言 | |
| 502 | + */ | |
| 503 | + private String languageIA; | |
| 504 | + private String languageDQ; | |
| 505 | + | |
| 506 | + /** | |
| 507 | + * 社交 | |
| 508 | + */ | |
| 509 | + private String socialContactIA; | |
| 510 | + private String socialContactDQ; | |
| 511 | + | |
| 512 | + public String getExerciseIA() { | |
| 513 | + return exerciseIA; | |
| 514 | + } | |
| 515 | + | |
| 516 | + public void setExerciseIA(String exerciseIA) { | |
| 517 | + this.exerciseIA = exerciseIA; | |
| 518 | + } | |
| 519 | + | |
| 520 | + public String getExerciseDQ() { | |
| 521 | + return exerciseDQ; | |
| 522 | + } | |
| 523 | + | |
| 524 | + public void setExerciseDQ(String exerciseDQ) { | |
| 525 | + this.exerciseDQ = exerciseDQ; | |
| 526 | + } | |
| 527 | + | |
| 528 | + public String getMovementIA() { | |
| 529 | + return movementIA; | |
| 530 | + } | |
| 531 | + | |
| 532 | + public void setMovementIA(String movementIA) { | |
| 533 | + this.movementIA = movementIA; | |
| 534 | + } | |
| 535 | + | |
| 536 | + public String getMovementDQ() { | |
| 537 | + return movementDQ; | |
| 538 | + } | |
| 539 | + | |
| 540 | + public void setMovementDQ(String movementDQ) { | |
| 541 | + this.movementDQ = movementDQ; | |
| 542 | + } | |
| 543 | + | |
| 544 | + public String getAdaptationIA() { | |
| 545 | + return adaptationIA; | |
| 546 | + } | |
| 547 | + | |
| 548 | + public void setAdaptationIA(String adaptationIA) { | |
| 549 | + this.adaptationIA = adaptationIA; | |
| 550 | + } | |
| 551 | + | |
| 552 | + public String getAdaptationDQ() { | |
| 553 | + return adaptationDQ; | |
| 554 | + } | |
| 555 | + | |
| 556 | + public void setAdaptationDQ(String adaptationDQ) { | |
| 557 | + this.adaptationDQ = adaptationDQ; | |
| 558 | + } | |
| 559 | + | |
| 560 | + public String getLanguageIA() { | |
| 561 | + return languageIA; | |
| 562 | + } | |
| 563 | + | |
| 564 | + public void setLanguageIA(String languageIA) { | |
| 565 | + this.languageIA = languageIA; | |
| 566 | + } | |
| 567 | + | |
| 568 | + public String getLanguageDQ() { | |
| 569 | + return languageDQ; | |
| 570 | + } | |
| 571 | + | |
| 572 | + public void setLanguageDQ(String languageDQ) { | |
| 573 | + this.languageDQ = languageDQ; | |
| 574 | + } | |
| 575 | + | |
| 576 | + public String getSocialContactIA() { | |
| 577 | + return socialContactIA; | |
| 578 | + } | |
| 579 | + | |
| 580 | + public void setSocialContactIA(String socialContactIA) { | |
| 581 | + this.socialContactIA = socialContactIA; | |
| 582 | + } | |
| 583 | + | |
| 584 | + public String getSocialContactDQ() { | |
| 585 | + return socialContactDQ; | |
| 586 | + } | |
| 587 | + | |
| 588 | + public void setSocialContactDQ(String socialContactDQ) { | |
| 589 | + this.socialContactDQ = socialContactDQ; | |
| 590 | + } | |
| 591 | + | |
| 482 | 592 | public Integer getAbnormalSize() { |
| 483 | 593 | return abnormalSize; |
| 484 | 594 | } |