Commit 232a0080c311903818e0ea06ae8e9548017fa75c
1 parent
e633fb925d
Exists in
master
and in
1 other branch
add extends BaseModel
Showing 4 changed files with 8 additions and 4 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/AntExChuModel.java
View file @
232a008
1 | 1 | package com.lyms.platform.pojo; |
2 | 2 | |
3 | +import com.lyms.platform.common.result.BaseModel; | |
3 | 4 | import org.springframework.data.mongodb.core.mapping.Document; |
4 | 5 | |
5 | 6 | import java.io.Serializable; |
... | ... | @@ -12,7 +13,7 @@ |
12 | 13 | * Created by Administrator on 2016/6/21 0021. |
13 | 14 | */ |
14 | 15 | @Document(collection = "lyms_antexc") |
15 | -public class AntExChuModel implements Serializable { | |
16 | +public class AntExChuModel extends BaseModel { | |
16 | 17 | |
17 | 18 | private String id; |
18 | 19 | private String parentId; |
platform-dal/src/main/java/com/lyms/platform/pojo/AntExRecordModel.java
View file @
232a008
1 | 1 | package com.lyms.platform.pojo; |
2 | 2 | |
3 | +import com.lyms.platform.common.result.BaseModel; | |
3 | 4 | import org.springframework.data.mongodb.core.mapping.Document; |
4 | 5 | |
5 | 6 | import java.io.Serializable; |
... | ... | @@ -12,7 +13,7 @@ |
12 | 13 | * Created by Administrator on 2016/11/28 0028. |
13 | 14 | */ |
14 | 15 | @Document(collection = "lyms_antexrecord") |
15 | -public class AntExRecordModel implements Serializable { | |
16 | +public class AntExRecordModel extends BaseModel { | |
16 | 17 | |
17 | 18 | private String id; |
18 | 19 |
platform-dal/src/main/java/com/lyms/platform/pojo/ArchiveData.java
View file @
232a008
1 | 1 | package com.lyms.platform.pojo; |
2 | 2 | |
3 | +import com.lyms.platform.common.result.BaseModel; | |
3 | 4 | import org.springframework.data.mongodb.core.mapping.Document; |
4 | 5 | |
5 | 6 | /** |
6 | 7 | * Created by riecard on 2016/10/19. |
7 | 8 | */ |
8 | 9 | @Document(collection = "lyms_archivedata") |
9 | -public class ArchiveData implements java.io.Serializable { | |
10 | +public class ArchiveData extends BaseModel { | |
10 | 11 | |
11 | 12 | private String id; |
12 | 13 | private String name; |
platform-dal/src/main/java/com/lyms/platform/pojo/PremaritalCheckup.java
View file @
232a008
1 | 1 | package com.lyms.platform.pojo; |
2 | 2 | |
3 | +import com.lyms.platform.common.result.BaseModel; | |
3 | 4 | import org.springframework.data.mongodb.core.mapping.Document; |
4 | 5 | |
5 | 6 | import java.util.Date; |
... | ... | @@ -10,7 +11,7 @@ |
10 | 11 | * Created by wdb on 2016/11/17 0017. |
11 | 12 | */ |
12 | 13 | @Document(collection="lyms_premarital_checkup") |
13 | -public class PremaritalCheckup { | |
14 | +public class PremaritalCheckup extends BaseModel { | |
14 | 15 | |
15 | 16 | private String id; |
16 | 17 | //女性/男性ID |