From 3acec3660921f22b58bdaa85d61a2fcfba8e6c98 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期三, 21 六月 2023 10:11:31 +0800 Subject: [PATCH] 问卷列表 --- smartor/src/main/java/com/smartor/domain/PatMedOuthosp.java | 332 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 332 insertions(+), 0 deletions(-) diff --git a/smartor/src/main/java/com/smartor/domain/PatMedOuthosp.java b/smartor/src/main/java/com/smartor/domain/PatMedOuthosp.java new file mode 100644 index 0000000..a5cf2c4 --- /dev/null +++ b/smartor/src/main/java/com/smartor/domain/PatMedOuthosp.java @@ -0,0 +1,332 @@ +package com.smartor.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 鎮h�呴棬璇婅褰曞璞� pat_med_outhosp + * + * @author smartor + * @date 2023-03-04 + */ +@ApiModel(value = "PatMedOuthosp", description = "鎮h�呴棬璇婅褰曞璞�") +public class PatMedOuthosp extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 鑷ID */ + @ApiModelProperty(name = "鑷ID") + private Long id; + + /** 娴佹按鍙� */ + @ApiModelProperty(name = "娴佹按鍙�") + private String serialnum; + + /** 妗fID */ + @ApiModelProperty(name = "妗fID") + private Long patid; + + /** 鍖婚櫌鍚嶇О */ + @ApiModelProperty(name = "鍖婚櫌鍚嶇О") + private String hospitalname; + + /** 鍖婚櫌缂栧彿 */ + @ApiModelProperty(name = "鍖婚櫌缂栧彿") + private String hospitalcode; + + /** 璇婃柇ICD鍊� */ + @ApiModelProperty(name = "璇婃柇ICD鍊�") + private String icd10code; + + /** 璇婃柇鍚嶇О */ + @ApiModelProperty(name = "璇婃柇鍚嶇О") + private String diagname; + + /** 绉戝浠g爜 */ + @ApiModelProperty(name = "绉戝浠g爜") + private String deptcode; + + /** 绉戝鍚嶇О */ + @ApiModelProperty(name = "绉戝鍚嶇О") + @Excel(name = " 绉戝鍚嶇О ") + private String deptname; + + /** 鍖荤敓宸ュ彿 */ + @ApiModelProperty(name = "鍖荤敓宸ュ彿") + private String drcode; + + /** 鍖荤敓鍚嶇О */ + @ApiModelProperty(name = "鍖荤敓鍚嶇О") + private String drname; + + /** 灏辫瘖鏃ユ湡 */ + @ApiModelProperty(name = "灏辫瘖鏃ユ湡") + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = " 灏辫瘖鏃ユ湡 ", width = 30, dateFormat = "yyyy-MM-dd") + private Date admitdate; + + /** 鏈烘瀯ID */ + @ApiModelProperty(name = "鏈烘瀯ID") + private String orgid; + + /** 鍒犻櫎鏍囪 */ + @ApiModelProperty(name = "鍒犻櫎鏍囪") + private String delFlag; + + /** 涓婁紶鏍囪 */ + @ApiModelProperty(name = "涓婁紶鏍囪") + private Long isupload; + + /** 涓婁紶鏃堕棿 */ + @ApiModelProperty(name = "涓婁紶鏃堕棿") + private Date uploadTime; + + /** 鏄惁鐢熸垚鏂规鐘舵��;0鏈敓鎴� 1鐢熸垚灏辫瘖 9鏃犲尮閰嶆柟妗� */ + @ApiModelProperty(name = "鏄惁鐢熸垚鏂规鐘舵��;0鏈敓鎴� 1鐢熸垚灏辫瘖 9鏃犲尮閰嶆柟妗�") + private Long schemestatus; + + /** 绉戝ID */ + @ApiModelProperty(name = "绉戝ID") + private Long deptid; + + /** 鏂规鐘舵�佹搷浣滄椂闂� */ + @ApiModelProperty(name = "鏂规鐘舵�佹搷浣滄椂闂�") + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = " 鏂规鐘舵�佹搷浣滄椂闂� ", width = 30, dateFormat = "yyyy-MM-dd") + private Date schemetime; + + /** 鐜扮梾鍙� */ + @ApiModelProperty(name = "鐜扮梾鍙�") + private String hpi; + + /** 涓昏堪 */ + @ApiModelProperty(name = "涓昏堪") + private String mainsuit; + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setSerialnum(String serialnum) + { + this.serialnum = serialnum; + } + + public String getSerialnum() + { + return serialnum; + } + public void setPatid(Long patid) + { + this.patid = patid; + } + + public Long getPatid() + { + return patid; + } + public void setHospitalname(String hospitalname) + { + this.hospitalname = hospitalname; + } + + public String getHospitalname() + { + return hospitalname; + } + public void setHospitalcode(String hospitalcode) + { + this.hospitalcode = hospitalcode; + } + + public String getHospitalcode() + { + return hospitalcode; + } + public void setIcd10code(String icd10code) + { + this.icd10code = icd10code; + } + + public String getIcd10code() + { + return icd10code; + } + public void setDiagname(String diagname) + { + this.diagname = diagname; + } + + public String getDiagname() + { + return diagname; + } + public void setDeptcode(String deptcode) + { + this.deptcode = deptcode; + } + + public String getDeptcode() + { + return deptcode; + } + public void setDeptname(String deptname) + { + this.deptname = deptname; + } + + public String getDeptname() + { + return deptname; + } + public void setDrcode(String drcode) + { + this.drcode = drcode; + } + + public String getDrcode() + { + return drcode; + } + public void setDrname(String drname) + { + this.drname = drname; + } + + public String getDrname() + { + return drname; + } + public void setAdmitdate(Date admitdate) + { + this.admitdate = admitdate; + } + + public Date getAdmitdate() + { + return admitdate; + } + public void setOrgid(String orgid) + { + this.orgid = orgid; + } + + public String getOrgid() + { + return orgid; + } + public void setDelFlag(String delFlag) + { + this.delFlag = delFlag; + } + + public String getDelFlag() + { + return delFlag; + } + public void setIsupload(Long isupload) + { + this.isupload = isupload; + } + + public Long getIsupload() + { + return isupload; + } + public void setUploadTime(Date uploadTime) + { + this.uploadTime = uploadTime; + } + + public Date getUploadTime() + { + return uploadTime; + } + public void setSchemestatus(Long schemestatus) + { + this.schemestatus = schemestatus; + } + + public Long getSchemestatus() + { + return schemestatus; + } + public void setDeptid(Long deptid) + { + this.deptid = deptid; + } + + public Long getDeptid() + { + return deptid; + } + public void setSchemetime(Date schemetime) + { + this.schemetime = schemetime; + } + + public Date getSchemetime() + { + return schemetime; + } + public void setHpi(String hpi) + { + this.hpi = hpi; + } + + public String getHpi() + { + return hpi; + } + public void setMainsuit(String mainsuit) + { + this.mainsuit = mainsuit; + } + + public String getMainsuit() + { + return mainsuit; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("serialnum", getSerialnum()) + .append("patid", getPatid()) + .append("hospitalname", getHospitalname()) + .append("hospitalcode", getHospitalcode()) + .append("icd10code", getIcd10code()) + .append("diagname", getDiagname()) + .append("deptcode", getDeptcode()) + .append("deptname", getDeptname()) + .append("drcode", getDrcode()) + .append("drname", getDrname()) + .append("admitdate", getAdmitdate()) + .append("orgid", getOrgid()) + .append("delFlag", getDelFlag()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("isupload", getIsupload()) + .append("uploadTime", getUploadTime()) + .append("schemestatus", getSchemestatus()) + .append("deptid", getDeptid()) + .append("schemetime", getSchemetime()) + .append("hpi", getHpi()) + .append("mainsuit", getMainsuit()) + .toString(); + } +} -- Gitblit v1.9.3