Commit 56118aa6ed5127e7a40e94bfeedce449a23ed14d
1 parent
4e1f3359dd
Exists in
master
and in
6 other branches
产检增加流产相关字段
Showing 1 changed file with 11 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BasicConfigResult.java
View file @
56118aa
... | ... | @@ -2,7 +2,6 @@ |
2 | 2 | |
3 | 3 | import com.lyms.platform.common.base.IBasicResultConvert; |
4 | 4 | import com.lyms.platform.pojo.BasicConfig; |
5 | -import com.lyms.platform.pojo.PuerperaModel; | |
6 | 5 | |
7 | 6 | import java.util.List; |
8 | 7 | |
9 | 8 | |
... | ... | @@ -13,7 +12,17 @@ |
13 | 12 | private String parentId; |
14 | 13 | private String name; |
15 | 14 | private String desc; |
15 | + //权重 | |
16 | + private Integer weight; | |
16 | 17 | |
18 | + public Integer getWeight() { | |
19 | + return weight; | |
20 | + } | |
21 | + | |
22 | + public void setWeight(Integer weight) { | |
23 | + this.weight = weight; | |
24 | + } | |
25 | + | |
17 | 26 | private List<BasicConfigResult> childConfigs; |
18 | 27 | |
19 | 28 | public List<BasicConfigResult> getChildConfigs() { |
... | ... | @@ -73,6 +82,7 @@ |
73 | 82 | setEnable(destModel.getEnable()); |
74 | 83 | setName(destModel.getName()); |
75 | 84 | setParentId(destModel.getParentId()); |
85 | + setWeight(destModel.getWeight()); | |
76 | 86 | return this; |
77 | 87 | } |
78 | 88 | } |