Commit 96dd23e402dc40ef74207deb3f142f2d4137f053
1 parent
46c3e8b032
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 4 additions and 3 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/TrackDayConfig.java
View file @
96dd23e
| ... | ... | @@ -5,6 +5,7 @@ |
| 5 | 5 | import org.springframework.data.mongodb.core.mapping.Document; |
| 6 | 6 | |
| 7 | 7 | import java.util.Date; |
| 8 | +import java.util.List; | |
| 8 | 9 | import java.util.Map; |
| 9 | 10 | |
| 10 | 11 | |
| ... | ... | @@ -18,7 +19,7 @@ |
| 18 | 19 | |
| 19 | 20 | private String id; |
| 20 | 21 | private String hospitalId; |
| 21 | - private Map<String,String> confis; | |
| 22 | + private List<Map<String,String>> confis; | |
| 22 | 23 | private Date created; |
| 23 | 24 | private Date modified; |
| 24 | 25 | |
| 25 | 26 | |
| ... | ... | @@ -38,11 +39,11 @@ |
| 38 | 39 | this.hospitalId = hospitalId; |
| 39 | 40 | } |
| 40 | 41 | |
| 41 | - public Map<String, String> getConfis() { | |
| 42 | + public List<Map<String, String>> getConfis() { | |
| 42 | 43 | return confis; |
| 43 | 44 | } |
| 44 | 45 | |
| 45 | - public void setConfis(Map<String, String> confis) { | |
| 46 | + public void setConfis(List<Map<String, String>> confis) { | |
| 46 | 47 | this.confis = confis; |
| 47 | 48 | } |
| 48 | 49 |