Commit fa7f78242952aabcf4d491376d896e2984352215
1 parent
20add7c7fa
Exists in
master
and in
6 other branches
盆地添加追访日期
Showing 1 changed file with 27 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/AfterVisitPelvicFloorModel.java
View file @
fa7f782
... | ... | @@ -38,6 +38,7 @@ |
38 | 38 | private String month3Advice; |
39 | 39 | private String month3User; |
40 | 40 | private String month3Remark; |
41 | + private Date month3Time; | |
41 | 42 | /** |
42 | 43 | * 6个月 |
43 | 44 | * 随访结果 1-成功 2-失败 、 随访建议、随访人员、备注 |
... | ... | @@ -46,6 +47,7 @@ |
46 | 47 | private String month6Advice; |
47 | 48 | private String month6User; |
48 | 49 | private String month6Remark; |
50 | + private Date month6Time; | |
49 | 51 | |
50 | 52 | /** |
51 | 53 | * 1年 |
52 | 54 | |
... | ... | @@ -55,10 +57,35 @@ |
55 | 57 | private String yearAdvice; |
56 | 58 | private String yearUser; |
57 | 59 | private String yearRemark; |
60 | + private Date yearTime; | |
58 | 61 | |
59 | 62 | private Integer yn; |
60 | 63 | private Date createTime; |
61 | 64 | private String createUser; |
65 | + | |
66 | + public Date getMonth3Time() { | |
67 | + return month3Time; | |
68 | + } | |
69 | + | |
70 | + public void setMonth3Time(Date month3Time) { | |
71 | + this.month3Time = month3Time; | |
72 | + } | |
73 | + | |
74 | + public Date getMonth6Time() { | |
75 | + return month6Time; | |
76 | + } | |
77 | + | |
78 | + public void setMonth6Time(Date month6Time) { | |
79 | + this.month6Time = month6Time; | |
80 | + } | |
81 | + | |
82 | + public Date getYearTime() { | |
83 | + return yearTime; | |
84 | + } | |
85 | + | |
86 | + public void setYearTime(Date yearTime) { | |
87 | + this.yearTime = yearTime; | |
88 | + } | |
62 | 89 | |
63 | 90 | public String getCreateUser() { |
64 | 91 | return createUser; |