Commit 756637ba9737dad627539c0415525deb0be497a1

Authored by liquanyu
1 parent 558d2a7cfa

update code

Showing 1 changed file with 2 additions and 1 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/DataPermissionsModel.java View file @ 756637b
... ... @@ -7,6 +7,7 @@
7 7 import org.springframework.data.annotation.Id;
8 8 import org.springframework.data.mongodb.core.mapping.Document;
9 9  
  10 +import java.io.Serializable;
10 11 import java.util.HashMap;
11 12 import java.util.List;
12 13 import java.util.Map;
... ... @@ -73,7 +74,7 @@
73 74 data.put(orgId,permission);
74 75 }
75 76  
76   - public static class SimplePermission {
  77 + public static class SimplePermission implements Serializable{
77 78 //1 自己 2 自己科室 3 全部科室 4
78 79 private Integer type=PermissionTypeEnums.ONLY_SELF.getId();
79 80