|
@@ -0,0 +1,180 @@
|
|
|
+package com.diagbot.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author zhoutg
|
|
|
+ * @since 2020-04-29
|
|
|
+ */
|
|
|
+public class MedRecordModule implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 医院ID
|
|
|
+ */
|
|
|
+ private Long hospitalId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据模块ID
|
|
|
+ */
|
|
|
+ private Long modeId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据模块名称
|
|
|
+ */
|
|
|
+ private String modeName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 模板类型
|
|
|
+ */
|
|
|
+ private String recTypeDetail;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 住院号示例
|
|
|
+ */
|
|
|
+ private String behospitalCodes;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否删除,N:未删除,Y:删除
|
|
|
+ */
|
|
|
+ private String isDeleted;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime gmtCreate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
+ */
|
|
|
+ private LocalDateTime gmtModified;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人,0表示无创建人值
|
|
|
+ */
|
|
|
+ private String creator;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人,如果为0则表示纪录未修改
|
|
|
+ */
|
|
|
+ private String modifier;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+ public Long getHospitalId() {
|
|
|
+ return hospitalId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHospitalId(Long hospitalId) {
|
|
|
+ this.hospitalId = hospitalId;
|
|
|
+ }
|
|
|
+ public Long getModeId() {
|
|
|
+ return modeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModeId(Long modeId) {
|
|
|
+ this.modeId = modeId;
|
|
|
+ }
|
|
|
+ public String getModeName() {
|
|
|
+ return modeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModeName(String modeName) {
|
|
|
+ this.modeName = modeName;
|
|
|
+ }
|
|
|
+ public String getRecTypeDetail() {
|
|
|
+ return recTypeDetail;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecTypeDetail(String recTypeDetail) {
|
|
|
+ this.recTypeDetail = recTypeDetail;
|
|
|
+ }
|
|
|
+ public String getBehospitalCodes() {
|
|
|
+ return behospitalCodes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBehospitalCodes(String behospitalCodes) {
|
|
|
+ this.behospitalCodes = behospitalCodes;
|
|
|
+ }
|
|
|
+ public String getIsDeleted() {
|
|
|
+ return isDeleted;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsDeleted(String isDeleted) {
|
|
|
+ this.isDeleted = isDeleted;
|
|
|
+ }
|
|
|
+ public LocalDateTime getGmtCreate() {
|
|
|
+ return gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
+ this.gmtCreate = gmtCreate;
|
|
|
+ }
|
|
|
+ public LocalDateTime getGmtModified() {
|
|
|
+ return gmtModified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
+ this.gmtModified = gmtModified;
|
|
|
+ }
|
|
|
+ public String getCreator() {
|
|
|
+ return creator;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreator(String creator) {
|
|
|
+ this.creator = creator;
|
|
|
+ }
|
|
|
+ public String getModifier() {
|
|
|
+ return modifier;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModifier(String modifier) {
|
|
|
+ this.modifier = modifier;
|
|
|
+ }
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "MedRecordModule{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", hospitalId=" + hospitalId +
|
|
|
+ ", modeId=" + modeId +
|
|
|
+ ", modeName=" + modeName +
|
|
|
+ ", recTypeDetail=" + recTypeDetail +
|
|
|
+ ", behospitalCodes=" + behospitalCodes +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", remark=" + remark +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|