|
@@ -0,0 +1,250 @@
|
|
|
+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 java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 问诊记录-主表
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author zhoutg
|
|
|
+ * @since 2020-02-01
|
|
|
+ */
|
|
|
+@TableName("znwz_inquiry_info")
|
|
|
+public class InquiryInfo implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否删除,N:未删除,Y:删除
|
|
|
+ */
|
|
|
+ private String isDeleted;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime gmtCreate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
+ */
|
|
|
+ private LocalDateTime gmtModified;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人,0表示无创建人值
|
|
|
+ */
|
|
|
+ private String creator;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人,如果为0则表示纪录未修改
|
|
|
+ */
|
|
|
+ private String modifier;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 公众号appid
|
|
|
+ */
|
|
|
+ private String appId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 医院名称
|
|
|
+ */
|
|
|
+ private String organName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 医生所在科室名称
|
|
|
+ */
|
|
|
+ private String department;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 医生ID
|
|
|
+ */
|
|
|
+ private String doctorId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 医生名称
|
|
|
+ */
|
|
|
+ private String doctorName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户在纳里的ID
|
|
|
+ */
|
|
|
+ private String mpiId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户名称
|
|
|
+ */
|
|
|
+ private String patientName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户年龄
|
|
|
+ */
|
|
|
+ private Integer patientAge;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户性别
|
|
|
+ */
|
|
|
+ private String patientSex;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 诊断
|
|
|
+ */
|
|
|
+ private String diagnosis;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+ 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 getAppId() {
|
|
|
+ return appId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAppId(String appId) {
|
|
|
+ this.appId = appId;
|
|
|
+ }
|
|
|
+ public String getOrganName() {
|
|
|
+ return organName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganName(String organName) {
|
|
|
+ this.organName = organName;
|
|
|
+ }
|
|
|
+ public String getDepartment() {
|
|
|
+ return department;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDepartment(String department) {
|
|
|
+ this.department = department;
|
|
|
+ }
|
|
|
+ public String getDoctorId() {
|
|
|
+ return doctorId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDoctorId(String doctorId) {
|
|
|
+ this.doctorId = doctorId;
|
|
|
+ }
|
|
|
+ public String getDoctorName() {
|
|
|
+ return doctorName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDoctorName(String doctorName) {
|
|
|
+ this.doctorName = doctorName;
|
|
|
+ }
|
|
|
+ public String getMpiId() {
|
|
|
+ return mpiId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMpiId(String mpiId) {
|
|
|
+ this.mpiId = mpiId;
|
|
|
+ }
|
|
|
+ public String getPatientName() {
|
|
|
+ return patientName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPatientName(String patientName) {
|
|
|
+ this.patientName = patientName;
|
|
|
+ }
|
|
|
+ public Integer getPatientAge() {
|
|
|
+ return patientAge;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPatientAge(Integer patientAge) {
|
|
|
+ this.patientAge = patientAge;
|
|
|
+ }
|
|
|
+ public String getPatientSex() {
|
|
|
+ return patientSex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPatientSex(String patientSex) {
|
|
|
+ this.patientSex = patientSex;
|
|
|
+ }
|
|
|
+ public String getDiagnosis() {
|
|
|
+ return diagnosis;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDiagnosis(String diagnosis) {
|
|
|
+ this.diagnosis = diagnosis;
|
|
|
+ }
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ @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 +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|