Commit 3cb5b274f5aa1448fe3d491e8c65a238091a7b79
1 parent
6895c7c57b
Exists in
master
and in
8 other branches
增加是否通知
Showing 1 changed file with 9 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ChanQianDiaAddRequest.java
View file @
3cb5b27
... | ... | @@ -10,8 +10,8 @@ |
10 | 10 | */ |
11 | 11 | @Form |
12 | 12 | public class ChanQianDiaAddRequest { |
13 | - @NotEmpty | |
14 | 13 | private String id; |
14 | + private String parentId; | |
15 | 15 | @FormParam |
16 | 16 | private String diaTime;// 诊断时间 |
17 | 17 | @FormParam |
... | ... | @@ -22,6 +22,14 @@ |
22 | 22 | private Integer pregnancyOutcome;// 妊娠结局 |
23 | 23 | @FormParam |
24 | 24 | private String publishName;// 录入人员; |
25 | + | |
26 | + public String getParentId() { | |
27 | + return parentId; | |
28 | + } | |
29 | + | |
30 | + public void setParentId(String parentId) { | |
31 | + this.parentId = parentId; | |
32 | + } | |
25 | 33 | |
26 | 34 | public String getDiaTime() { |
27 | 35 | return diaTime; |