Commit 27790f1b9abac0bc2b8acb59173f597f94bd0997
1 parent
63b194a942
Exists in
master
and in
6 other branches
两癌
Showing 2 changed files with 212 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/CancerExamineModel.java
View file @
27790f1
| 1 | +package com.lyms.platform.pojo; | |
| 2 | + | |
| 3 | +import com.lyms.platform.common.result.BaseModel; | |
| 4 | +import org.springframework.data.mongodb.core.mapping.Document; | |
| 5 | + | |
| 6 | +import java.util.Date; | |
| 7 | + | |
| 8 | +@Document(collection = "lyms_cancer_examine") | |
| 9 | +public class CancerExamineModel extends BaseModel { | |
| 10 | + private String id; | |
| 11 | + private String hospitalId; | |
| 12 | + private String provinceId; | |
| 13 | + private String cityId; | |
| 14 | + private String areaId; | |
| 15 | + | |
| 16 | + private Integer year; //上报年份 | |
| 17 | + private Integer quarter; //季度 | |
| 18 | + private String optUser; //录入用户 | |
| 19 | + private String optHospital; //录入单位 | |
| 20 | + private Date optDate; //录入时间 | |
| 21 | + private Integer type;//1 宫颈癌 2 乳腺癌 | |
| 22 | + | |
| 23 | + private Date examineDate;//审核时间/驳回时间 | |
| 24 | + private Integer position;//1 机构 2 县 3 市 | |
| 25 | + private Integer status; // 0 录入 1 审核中 2 审核通过 3 驳回 | |
| 26 | + | |
| 27 | + | |
| 28 | + public String getId() { | |
| 29 | + return id; | |
| 30 | + } | |
| 31 | + | |
| 32 | + public void setId(String id) { | |
| 33 | + this.id = id; | |
| 34 | + } | |
| 35 | + | |
| 36 | + public String getHospitalId() { | |
| 37 | + return hospitalId; | |
| 38 | + } | |
| 39 | + | |
| 40 | + public void setHospitalId(String hospitalId) { | |
| 41 | + this.hospitalId = hospitalId; | |
| 42 | + } | |
| 43 | + | |
| 44 | + public String getProvinceId() { | |
| 45 | + return provinceId; | |
| 46 | + } | |
| 47 | + | |
| 48 | + public void setProvinceId(String provinceId) { | |
| 49 | + this.provinceId = provinceId; | |
| 50 | + } | |
| 51 | + | |
| 52 | + public String getCityId() { | |
| 53 | + return cityId; | |
| 54 | + } | |
| 55 | + | |
| 56 | + public void setCityId(String cityId) { | |
| 57 | + this.cityId = cityId; | |
| 58 | + } | |
| 59 | + | |
| 60 | + public String getAreaId() { | |
| 61 | + return areaId; | |
| 62 | + } | |
| 63 | + | |
| 64 | + public void setAreaId(String areaId) { | |
| 65 | + this.areaId = areaId; | |
| 66 | + } | |
| 67 | + | |
| 68 | + public Integer getYear() { | |
| 69 | + return year; | |
| 70 | + } | |
| 71 | + | |
| 72 | + public void setYear(Integer year) { | |
| 73 | + this.year = year; | |
| 74 | + } | |
| 75 | + | |
| 76 | + public Integer getQuarter() { | |
| 77 | + return quarter; | |
| 78 | + } | |
| 79 | + | |
| 80 | + public void setQuarter(Integer quarter) { | |
| 81 | + this.quarter = quarter; | |
| 82 | + } | |
| 83 | + | |
| 84 | + public String getOptUser() { | |
| 85 | + return optUser; | |
| 86 | + } | |
| 87 | + | |
| 88 | + public void setOptUser(String optUser) { | |
| 89 | + this.optUser = optUser; | |
| 90 | + } | |
| 91 | + | |
| 92 | + public String getOptHospital() { | |
| 93 | + return optHospital; | |
| 94 | + } | |
| 95 | + | |
| 96 | + public void setOptHospital(String optHospital) { | |
| 97 | + this.optHospital = optHospital; | |
| 98 | + } | |
| 99 | + | |
| 100 | + public Date getOptDate() { | |
| 101 | + return optDate; | |
| 102 | + } | |
| 103 | + | |
| 104 | + public void setOptDate(Date optDate) { | |
| 105 | + this.optDate = optDate; | |
| 106 | + } | |
| 107 | + | |
| 108 | + public Date getExamineDate() { | |
| 109 | + return examineDate; | |
| 110 | + } | |
| 111 | + | |
| 112 | + public void setExamineDate(Date examineDate) { | |
| 113 | + this.examineDate = examineDate; | |
| 114 | + } | |
| 115 | + | |
| 116 | + public Integer getPosition() { | |
| 117 | + return position; | |
| 118 | + } | |
| 119 | + | |
| 120 | + public void setPosition(Integer position) { | |
| 121 | + this.position = position; | |
| 122 | + } | |
| 123 | + | |
| 124 | + public Integer getStatus() { | |
| 125 | + return status; | |
| 126 | + } | |
| 127 | + | |
| 128 | + public void setStatus(Integer status) { | |
| 129 | + this.status = status; | |
| 130 | + } | |
| 131 | + | |
| 132 | + public Integer getType() { | |
| 133 | + return type; | |
| 134 | + } | |
| 135 | + | |
| 136 | + public void setType(Integer type) { | |
| 137 | + this.type = type; | |
| 138 | + } | |
| 139 | +} |
platform-dal/src/main/java/com/lyms/platform/pojo/CancerExamineRecordModel.java
View file @
27790f1
| 1 | +package com.lyms.platform.pojo; | |
| 2 | + | |
| 3 | +import com.lyms.platform.common.result.BaseModel; | |
| 4 | +import org.springframework.data.mongodb.core.mapping.Document; | |
| 5 | + | |
| 6 | +import java.util.Date; | |
| 7 | + | |
| 8 | +@Document(collection = "lyms_cancer_examine_record") | |
| 9 | +public class CancerExamineRecordModel extends BaseModel { | |
| 10 | + private String id; | |
| 11 | + private String parentId;//CancerExamineModel对象的id | |
| 12 | + private Integer examineLevel;// 审核级别 2 县 3 市 | |
| 13 | + private String backReason; //驳回原因 | |
| 14 | + private Date examineDate;//审核时间/驳回时间 | |
| 15 | + private String hospitalId; | |
| 16 | + private Integer reasult; // 2审核通过 3 驳回 | |
| 17 | + | |
| 18 | + public String getId() { | |
| 19 | + return id; | |
| 20 | + } | |
| 21 | + | |
| 22 | + public void setId(String id) { | |
| 23 | + this.id = id; | |
| 24 | + } | |
| 25 | + | |
| 26 | + public String getParentId() { | |
| 27 | + return parentId; | |
| 28 | + } | |
| 29 | + | |
| 30 | + public void setParentId(String parentId) { | |
| 31 | + this.parentId = parentId; | |
| 32 | + } | |
| 33 | + | |
| 34 | + public Integer getExamineLevel() { | |
| 35 | + return examineLevel; | |
| 36 | + } | |
| 37 | + | |
| 38 | + public void setExamineLevel(Integer examineLevel) { | |
| 39 | + this.examineLevel = examineLevel; | |
| 40 | + } | |
| 41 | + | |
| 42 | + public String getBackReason() { | |
| 43 | + return backReason; | |
| 44 | + } | |
| 45 | + | |
| 46 | + public void setBackReason(String backReason) { | |
| 47 | + this.backReason = backReason; | |
| 48 | + } | |
| 49 | + | |
| 50 | + public Date getExamineDate() { | |
| 51 | + return examineDate; | |
| 52 | + } | |
| 53 | + | |
| 54 | + public void setExamineDate(Date examineDate) { | |
| 55 | + this.examineDate = examineDate; | |
| 56 | + } | |
| 57 | + | |
| 58 | + public String getHospitalId() { | |
| 59 | + return hospitalId; | |
| 60 | + } | |
| 61 | + | |
| 62 | + public void setHospitalId(String hospitalId) { | |
| 63 | + this.hospitalId = hospitalId; | |
| 64 | + } | |
| 65 | + | |
| 66 | + public Integer getReasult() { | |
| 67 | + return reasult; | |
| 68 | + } | |
| 69 | + | |
| 70 | + public void setReasult(Integer reasult) { | |
| 71 | + this.reasult = reasult; | |
| 72 | + } | |
| 73 | +} |