|
@@ -1,11 +1,10 @@
|
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import java.util.Date;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import java.io.Serializable;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -13,7 +12,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
* </p>
|
|
|
*
|
|
|
* @author gaodm
|
|
|
- * @since 2019-06-21
|
|
|
+ * @since 2019-11-19
|
|
|
*/
|
|
|
@TableName("prec_inquiry_info")
|
|
|
public class InquiryInfo implements Serializable {
|
|
@@ -66,6 +65,21 @@ public class InquiryInfo implements Serializable {
|
|
|
*/
|
|
|
private String hospitalName;
|
|
|
|
|
|
+ /**
|
|
|
+ * 子医院id
|
|
|
+ */
|
|
|
+ private Long sonHospitalId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 子医院code
|
|
|
+ */
|
|
|
+ private String sonHospitalCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 子医院名称
|
|
|
+ */
|
|
|
+ private String sonHospitalName;
|
|
|
+
|
|
|
/**
|
|
|
* 医院科室id
|
|
|
*/
|
|
@@ -151,6 +165,11 @@ public class InquiryInfo implements Serializable {
|
|
|
*/
|
|
|
private String dataJson;
|
|
|
|
|
|
+ /**
|
|
|
+ * 是否被引用:0-未引用;1-已引用
|
|
|
+ */
|
|
|
+ private Integer isQuoted;
|
|
|
+
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|
|
@@ -219,6 +238,27 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setHospitalName(String hospitalName) {
|
|
|
this.hospitalName = hospitalName;
|
|
|
}
|
|
|
+ public Long getSonHospitalId() {
|
|
|
+ return sonHospitalId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSonHospitalId(Long sonHospitalId) {
|
|
|
+ this.sonHospitalId = sonHospitalId;
|
|
|
+ }
|
|
|
+ public String getSonHospitalCode() {
|
|
|
+ return sonHospitalCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSonHospitalCode(String sonHospitalCode) {
|
|
|
+ this.sonHospitalCode = sonHospitalCode;
|
|
|
+ }
|
|
|
+ public String getSonHospitalName() {
|
|
|
+ return sonHospitalName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSonHospitalName(String sonHospitalName) {
|
|
|
+ this.sonHospitalName = sonHospitalName;
|
|
|
+ }
|
|
|
public Long getHospitalDeptId() {
|
|
|
return hospitalDeptId;
|
|
|
}
|
|
@@ -338,6 +378,13 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setDataJson(String dataJson) {
|
|
|
this.dataJson = dataJson;
|
|
|
}
|
|
|
+ public Integer getIsQuoted() {
|
|
|
+ return isQuoted;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsQuoted(Integer isQuoted) {
|
|
|
+ this.isQuoted = isQuoted;
|
|
|
+ }
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
@@ -349,33 +396,37 @@ public class InquiryInfo implements Serializable {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "InquiryInfo{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
- ", hospitalCode=" + hospitalCode +
|
|
|
- ", hospitalName=" + hospitalName +
|
|
|
- ", hospitalDeptId=" + hospitalDeptId +
|
|
|
- ", hospitalDeptCode=" + hospitalDeptCode +
|
|
|
- ", hospitalDeptName=" + hospitalDeptName +
|
|
|
- ", doctorId=" + doctorId +
|
|
|
- ", doctorCode=" + doctorCode +
|
|
|
- ", doctorName=" + doctorName +
|
|
|
- ", patientId=" + patientId +
|
|
|
- ", patientCode=" + patientCode +
|
|
|
- ", patientName=" + patientName +
|
|
|
- ", patientSex=" + patientSex +
|
|
|
- ", patientPhone=" + patientPhone +
|
|
|
- ", patientBirthday=" + patientBirthday +
|
|
|
- ", patientIdNo=" + patientIdNo +
|
|
|
- ", inquiryCode=" + inquiryCode +
|
|
|
- ", regVisitedState=" + regVisitedState +
|
|
|
- ", type=" + type +
|
|
|
- ", dataJson=" + dataJson +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", hospitalId=" + hospitalId +
|
|
|
+ ", hospitalCode=" + hospitalCode +
|
|
|
+ ", hospitalName=" + hospitalName +
|
|
|
+ ", sonHospitalId=" + sonHospitalId +
|
|
|
+ ", sonHospitalCode=" + sonHospitalCode +
|
|
|
+ ", sonHospitalName=" + sonHospitalName +
|
|
|
+ ", hospitalDeptId=" + hospitalDeptId +
|
|
|
+ ", hospitalDeptCode=" + hospitalDeptCode +
|
|
|
+ ", hospitalDeptName=" + hospitalDeptName +
|
|
|
+ ", doctorId=" + doctorId +
|
|
|
+ ", doctorCode=" + doctorCode +
|
|
|
+ ", doctorName=" + doctorName +
|
|
|
+ ", patientId=" + patientId +
|
|
|
+ ", patientCode=" + patientCode +
|
|
|
+ ", patientName=" + patientName +
|
|
|
+ ", patientSex=" + patientSex +
|
|
|
+ ", patientPhone=" + patientPhone +
|
|
|
+ ", patientBirthday=" + patientBirthday +
|
|
|
+ ", patientIdNo=" + patientIdNo +
|
|
|
+ ", inquiryCode=" + inquiryCode +
|
|
|
+ ", regVisitedState=" + regVisitedState +
|
|
|
+ ", type=" + type +
|
|
|
+ ", dataJson=" + dataJson +
|
|
|
+ ", isQuoted=" + isQuoted +
|
|
|
+ ", remark=" + remark +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|