|
@@ -1,10 +1,11 @@
|
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import java.time.LocalDateTime;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -12,7 +13,7 @@ import java.io.Serializable;
|
|
|
* </p>
|
|
|
*
|
|
|
* @author zhoutg
|
|
|
- * @since 2020-02-01
|
|
|
+ * @since 2020-02-02
|
|
|
*/
|
|
|
@TableName("znwz_inquiry_info")
|
|
|
public class InquiryInfo implements Serializable {
|
|
@@ -33,12 +34,12 @@ public class InquiryInfo implements Serializable {
|
|
|
/**
|
|
|
* 记录创建时间
|
|
|
*/
|
|
|
- private LocalDateTime gmtCreate;
|
|
|
+ private Date gmtCreate;
|
|
|
|
|
|
/**
|
|
|
* 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
*/
|
|
|
- private LocalDateTime gmtModified;
|
|
|
+ private Date gmtModified;
|
|
|
|
|
|
/**
|
|
|
* 创建人,0表示无创建人值
|
|
@@ -100,6 +101,11 @@ public class InquiryInfo implements Serializable {
|
|
|
*/
|
|
|
private String diagnosis;
|
|
|
|
|
|
+ /**
|
|
|
+ * 纳里返回的url
|
|
|
+ */
|
|
|
+ private String retUrl;
|
|
|
+
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|
|
@@ -112,6 +118,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -119,20 +126,23 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
- public LocalDateTime getGmtCreate() {
|
|
|
+
|
|
|
+ public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
|
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
+ public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
- public LocalDateTime getGmtModified() {
|
|
|
+
|
|
|
+ public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
|
|
|
|
- public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
+ public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
+
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -140,6 +150,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
+
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -147,6 +158,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
+
|
|
|
public String getAppId() {
|
|
|
return appId;
|
|
|
}
|
|
@@ -154,6 +166,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setAppId(String appId) {
|
|
|
this.appId = appId;
|
|
|
}
|
|
|
+
|
|
|
public String getOrganName() {
|
|
|
return organName;
|
|
|
}
|
|
@@ -161,6 +174,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setOrganName(String organName) {
|
|
|
this.organName = organName;
|
|
|
}
|
|
|
+
|
|
|
public String getDepartment() {
|
|
|
return department;
|
|
|
}
|
|
@@ -168,6 +182,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setDepartment(String department) {
|
|
|
this.department = department;
|
|
|
}
|
|
|
+
|
|
|
public String getDoctorId() {
|
|
|
return doctorId;
|
|
|
}
|
|
@@ -175,6 +190,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setDoctorId(String doctorId) {
|
|
|
this.doctorId = doctorId;
|
|
|
}
|
|
|
+
|
|
|
public String getDoctorName() {
|
|
|
return doctorName;
|
|
|
}
|
|
@@ -182,6 +198,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setDoctorName(String doctorName) {
|
|
|
this.doctorName = doctorName;
|
|
|
}
|
|
|
+
|
|
|
public String getMpiId() {
|
|
|
return mpiId;
|
|
|
}
|
|
@@ -189,6 +206,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setMpiId(String mpiId) {
|
|
|
this.mpiId = mpiId;
|
|
|
}
|
|
|
+
|
|
|
public String getPatientName() {
|
|
|
return patientName;
|
|
|
}
|
|
@@ -196,6 +214,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setPatientName(String patientName) {
|
|
|
this.patientName = patientName;
|
|
|
}
|
|
|
+
|
|
|
public Integer getPatientAge() {
|
|
|
return patientAge;
|
|
|
}
|
|
@@ -203,6 +222,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setPatientAge(Integer patientAge) {
|
|
|
this.patientAge = patientAge;
|
|
|
}
|
|
|
+
|
|
|
public String getPatientSex() {
|
|
|
return patientSex;
|
|
|
}
|
|
@@ -210,6 +230,7 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setPatientSex(String patientSex) {
|
|
|
this.patientSex = patientSex;
|
|
|
}
|
|
|
+
|
|
|
public String getDiagnosis() {
|
|
|
return diagnosis;
|
|
|
}
|
|
@@ -217,6 +238,15 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setDiagnosis(String diagnosis) {
|
|
|
this.diagnosis = diagnosis;
|
|
|
}
|
|
|
+
|
|
|
+ public String getRetUrl() {
|
|
|
+ return retUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRetUrl(String retUrl) {
|
|
|
+ this.retUrl = retUrl;
|
|
|
+ }
|
|
|
+
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
@@ -228,23 +258,24 @@ public class InquiryInfo implements Serializable {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "InquiryInfo{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", appId=" + appId +
|
|
|
- ", organName=" + organName +
|
|
|
- ", department=" + department +
|
|
|
- ", doctorId=" + doctorId +
|
|
|
- ", doctorName=" + doctorName +
|
|
|
- ", mpiId=" + mpiId +
|
|
|
- ", patientName=" + patientName +
|
|
|
- ", patientAge=" + patientAge +
|
|
|
- ", patientSex=" + patientSex +
|
|
|
- ", diagnosis=" + diagnosis +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", appId=" + appId +
|
|
|
+ ", organName=" + organName +
|
|
|
+ ", department=" + department +
|
|
|
+ ", doctorId=" + doctorId +
|
|
|
+ ", doctorName=" + doctorName +
|
|
|
+ ", mpiId=" + mpiId +
|
|
|
+ ", patientName=" + patientName +
|
|
|
+ ", patientAge=" + patientAge +
|
|
|
+ ", patientSex=" + patientSex +
|
|
|
+ ", diagnosis=" + diagnosis +
|
|
|
+ ", retUrl=" + retUrl +
|
|
|
+ ", remark=" + remark +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|