Commit cf383b650cd805dabc06ed060eee9efb74665348

Authored by litao@lymsh.com
1 parent ae1f14815c

1

Showing 1 changed file with 9 additions and 1 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/BabyEyeCheck.java View file @ cf383b6
... ... @@ -114,7 +114,7 @@
114 114 /**
115 115 * 预约下次检查枚举
116 116 */
117   - private String CheckMonthId;
  117 + private String nextCheckMonthId;
118 118  
119 119 /**
120 120 * 预约下次检查时间
... ... @@ -628,6 +628,14 @@
628 628  
629 629 public void setDoctor(String doctor) {
630 630 this.doctor = doctor;
  631 + }
  632 +
  633 + public String getNextCheckMonthId() {
  634 + return nextCheckMonthId;
  635 + }
  636 +
  637 + public void setNextCheckMonthId(String nextCheckMonthId) {
  638 + this.nextCheckMonthId = nextCheckMonthId;
631 639 }
632 640 }