diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/HosptialOpinions.java b/platform-dal/src/main/java/com/lyms/platform/pojo/HosptialOpinions.java new file mode 100644 index 0000000..6604207 --- /dev/null +++ b/platform-dal/src/main/java/com/lyms/platform/pojo/HosptialOpinions.java @@ -0,0 +1,127 @@ +package com.lyms.platform.pojo; + +import com.lyms.platform.beans.SerialIdEnum; +import com.lyms.platform.common.result.BaseModel; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +/** + * 医院自定义处理意见 和 指导意见内容 + */ +@Document(collection="lyms_hosptial_opinions") +public class HosptialOpinions extends BaseModel { + private static final long serialVersionUID = 2299034928187627533L; + + @Id + private String id; + //医院id + private String hospitalId; + //医生姓名 + private String doctorName; + //创建时间 + private Long createDate; + //修改时间 + private Long modifiedDate; + //是否有效0-无效,1-有效 + private Integer yn; + //是否使用、true-使用,false-未使用,false在下拉框不显示,在数据中显示 + private boolean isUse; + //权重 + private Integer weight; + //1 处理意见内容 2 指导意见内容 + private Integer type; + //处理意见内容 + private String handleContent; + //指导意见内容 + private String guideContent; + + + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getHospitalId() { + return hospitalId; + } + + public void setHospitalId(String hospitalId) { + this.hospitalId = hospitalId; + } + + public String getDoctorName() { + return doctorName; + } + + public void setDoctorName(String doctorName) { + this.doctorName = doctorName; + } + + public Long getCreateDate() { + return createDate; + } + + public void setCreateDate(Long createDate) { + this.createDate = createDate; + } + + public Long getModifiedDate() { + return modifiedDate; + } + + public void setModifiedDate(Long modifiedDate) { + this.modifiedDate = modifiedDate; + } + + public Integer getYn() { + return yn; + } + + public void setYn(Integer yn) { + this.yn = yn; + } + + public boolean isUse() { + return isUse; + } + + public void setUse(boolean use) { + isUse = use; + } + + public Integer getWeight() { + return weight; + } + + public void setWeight(Integer weight) { + this.weight = weight; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getHandleContent() { + return handleContent; + } + + public void setHandleContent(String handleContent) { + this.handleContent = handleContent; + } + + public String getGuideContent() { + return guideContent; + } + + public void setGuideContent(String guideContent) { + this.guideContent = guideContent; + } +} \ No newline at end of file