Commit 9e5ceb6124d52921771f355d024cff5108da4a2a
1 parent
1837c754c1
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 3 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BabyEyeCheckServiceImpl.java
View file @
9e5ceb6
... | ... | @@ -665,7 +665,7 @@ |
665 | 665 | if ("yang".equals(babyEyeCheck.getY2())) { |
666 | 666 | positive.append("手持眼光仪(医生判定)"); |
667 | 667 | } |
668 | - if ("yang".equals(babyEyeCheck.getRedLeft2())) { | |
668 | + if ("yang".equals(babyEyeCheck.getRefraction2())) { | |
669 | 669 | positive.append("屈光(医生判定)"); |
670 | 670 | } |
671 | 671 | |
672 | 672 | |
... | ... | @@ -814,12 +814,12 @@ |
814 | 814 | positive.add(lacrimalApparatusMap); |
815 | 815 | |
816 | 816 | Map<String, Object> eyePosition2Map = new HashMap<>(); |
817 | - eyePosition2Map.put("id", "eyePosition2"); | |
817 | + eyePosition2Map.put("id", "eyePositionId2"); | |
818 | 818 | eyePosition2Map.put("name", "眼位(医生判定阳性)"); |
819 | 819 | positive.add(eyePosition2Map); |
820 | 820 | |
821 | 821 | Map<String, Object> redLeft2Map = new HashMap<>(); |
822 | - redLeft2Map.put("id", "redLeft2Map"); | |
822 | + redLeft2Map.put("id", "redLeft2"); | |
823 | 823 | redLeft2Map.put("name", "红光反射(医生判定阳性)"); |
824 | 824 | positive.add(redLeft2Map); |
825 | 825 |