|
@@ -0,0 +1,133 @@
|
|
|
+package com.diagbot.entity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+
|
|
|
+@TableName("tran_input_info")
|
|
|
+public class InputInfo implements Serializable{
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ private String hospitalCode; //医院编码、ID
|
|
|
+ private String hosptialName;//医院名称
|
|
|
+ private String hosptialDeptCode;//科室编码、ID
|
|
|
+ private String hosptialDeptName;//科室名称
|
|
|
+ private String doctorCode;//医生编码、ID
|
|
|
+ private String doctorName;//医生名称
|
|
|
+ private String inquiryCode; //就诊ID
|
|
|
+ private String patientId;
|
|
|
+ private long age;//年龄
|
|
|
+ private String sexType;//性别,1:男,2:女
|
|
|
+ private String diseaseName;//疾病名称
|
|
|
+
|
|
|
+ private String paramIn;
|
|
|
+ private String paramOut;
|
|
|
+ private String transTime;
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ public long getAge() {
|
|
|
+ return age;
|
|
|
+ }
|
|
|
+ public void setAge(long age) {
|
|
|
+ this.age = age;
|
|
|
+ }
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+ public String getHospitalCode() {
|
|
|
+ return hospitalCode;
|
|
|
+ }
|
|
|
+ public void setHospitalCode(String hospitalCode) {
|
|
|
+ this.hospitalCode = hospitalCode;
|
|
|
+ }
|
|
|
+ public String getHosptialName() {
|
|
|
+ return hosptialName;
|
|
|
+ }
|
|
|
+ public void setHosptialName(String hosptialName) {
|
|
|
+ this.hosptialName = hosptialName;
|
|
|
+ }
|
|
|
+ public String getHosptialDeptCode() {
|
|
|
+ return hosptialDeptCode;
|
|
|
+ }
|
|
|
+ public void setHosptialDeptCode(String hosptialDeptCode) {
|
|
|
+ this.hosptialDeptCode = hosptialDeptCode;
|
|
|
+ }
|
|
|
+ public String getHosptialDeptName() {
|
|
|
+ return hosptialDeptName;
|
|
|
+ }
|
|
|
+ public void setHosptialDeptName(String hosptialDeptName) {
|
|
|
+ this.hosptialDeptName = hosptialDeptName;
|
|
|
+ }
|
|
|
+ public String getDoctorCode() {
|
|
|
+ return doctorCode;
|
|
|
+ }
|
|
|
+ public void setDoctorCode(String doctorCode) {
|
|
|
+ this.doctorCode = doctorCode;
|
|
|
+ }
|
|
|
+ public String getDoctorName() {
|
|
|
+ return doctorName;
|
|
|
+ }
|
|
|
+ public void setDoctorName(String doctorName) {
|
|
|
+ this.doctorName = doctorName;
|
|
|
+ }
|
|
|
+ public String getInquiryCode() {
|
|
|
+ return inquiryCode;
|
|
|
+ }
|
|
|
+ public void setInquiryCode(String inquiryCode) {
|
|
|
+ this.inquiryCode = inquiryCode;
|
|
|
+ }
|
|
|
+ public String getPatientId() {
|
|
|
+ return patientId;
|
|
|
+ }
|
|
|
+ public void setPatientId(String patientId) {
|
|
|
+ this.patientId = patientId;
|
|
|
+ }
|
|
|
+ public String getSexType() {
|
|
|
+ return sexType;
|
|
|
+ }
|
|
|
+ public void setSexType(String sexType) {
|
|
|
+ this.sexType = sexType;
|
|
|
+ }
|
|
|
+ public String getDiseaseName() {
|
|
|
+ return diseaseName;
|
|
|
+ }
|
|
|
+ public void setDiseaseName(String diseaseName) {
|
|
|
+ this.diseaseName = diseaseName;
|
|
|
+ }
|
|
|
+ public String getParamIn() {
|
|
|
+ return paramIn;
|
|
|
+ }
|
|
|
+ public void setParamIn(String paramIn) {
|
|
|
+ this.paramIn = paramIn;
|
|
|
+ }
|
|
|
+ public String getParamOut() {
|
|
|
+ return paramOut;
|
|
|
+ }
|
|
|
+ public void setParamOut(String paramOut) {
|
|
|
+ this.paramOut = paramOut;
|
|
|
+ }
|
|
|
+ public String getTransTime() {
|
|
|
+ return transTime;
|
|
|
+ }
|
|
|
+ public void setTransTime(String transTime) {
|
|
|
+ this.transTime = transTime;
|
|
|
+ }
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|