From 997d3676de243cc1d84c62990d104fd81a25d54a Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 06 六月 2023 17:33:33 +0800
Subject: [PATCH] 患者错误信息
---
smartor/src/main/java/com/smartor/domain/PatArchive.java | 229 +++++++++++++++++++++++++++++---------------------------
1 files changed, 118 insertions(+), 111 deletions(-)
diff --git a/smartor/src/main/java/com/smartor/domain/PatArchive.java b/smartor/src/main/java/com/smartor/domain/PatArchive.java
index e493974..773f0e9 100644
--- a/smartor/src/main/java/com/smartor/domain/PatArchive.java
+++ b/smartor/src/main/java/com/smartor/domain/PatArchive.java
@@ -1,6 +1,7 @@
package com.smartor.domain;
import java.util.Date;
+
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
@@ -9,252 +10,258 @@
/**
* 鎮h�呮。妗堝璞� pat_archive
- *
+ *
* @author smartor
* @date 2023-03-04
*/
-public class PatArchive extends BaseEntity
-{
+public class PatArchive extends BaseEntity {
private static final long serialVersionUID = 1L;
- /** 鑷ID */
+ /**
+ * 鑷ID
+ */
private Long patid;
- /** 濮撳悕 */
+ /**
+ * 濮撳悕
+ */
@Excel(name = " 濮撳悕 ")
private String name;
- /** 鎬у埆 1:鐢� 2:濂�*/
+ /**
+ * 鎬у埆 1:鐢� 2:濂�
+ */
@Excel(name = " 鎬у埆 ")
private Long sex;
- /** 璇佷欢鍙风爜 */
+ /**
+ * 璇佷欢鍙风爜
+ */
@Excel(name = " 璇佷欢鍙风爜 ")
private String iccardno;
- /** 鐢熸棩 */
+ /**
+ * 鐢熸棩
+ */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = " 鐢熸棩 ", width = 30, dateFormat = "yyyy-MM-dd")
private Date birthdate;
- /** 骞撮緞 */
+ /**
+ * 骞撮緞
+ */
@Excel(name = " 骞撮緞 ")
private Long age;
- /** 鏉ユ簮 */
+ /**
+ * 鏉ユ簮
+ */
@Excel(name = " 鏉ユ簮 ")
private Long source;
- /** 寤烘。鏃堕棿 */
+ /**
+ * 寤烘。鏃堕棿
+ */
private Date archivetime;
- /** 寤烘。浜� */
+ /**
+ * 寤烘。浜�
+ */
private String archiveby;
- /** 鎵嬫満鍙风爜 */
+ /**
+ * 鎵嬫満鍙风爜
+ */
@Excel(name = " 鎵嬫満鍙风爜 ")
private String telcode;
- /** 浜插睘鍙风爜 */
+ /**
+ * 浜插睘鍙风爜
+ */
private String relativetelcode;
- /** 璇佷欢绫诲瀷 */
+ /**
+ * 璇佷欢绫诲瀷
+ */
private String iccardtype;
- /** 鏈烘瀯ID */
+ /**
+ * 鏈烘瀯ID
+ */
@Excel(name = " 鏈烘瀯ID ")
private String orgid;
- /** 寰俊openid */
+ /**
+ * 寰俊openid
+ */
private String openid;
- /** 鍒犻櫎鏍囪 */
+ /**
+ * 鍒犻櫎鏍囪
+ */
private String delFlag;
- /** 涓婁紶鏍囪 */
+ /**
+ * 涓婁紶鏍囪
+ */
private Long isupload;
- /** 涓婁紶鏃堕棿 */
+ /**
+ * 涓婁紶鏃堕棿
+ */
private Date uploadTime;
- public void setPatid(Long patid)
- {
+ /**
+ * 鏍囩
+ */
+ private String tag;
+
+ public void setPatid(Long patid) {
this.patid = patid;
}
- public Long getPatid()
- {
+ public Long getPatid() {
return patid;
}
- public void setName(String name)
- {
+
+ public void setName(String name) {
this.name = name;
}
- public String getName()
- {
+ public String getName() {
return name;
}
- public void setSex(Long sex)
- {
+
+ public void setSex(Long sex) {
this.sex = sex;
}
- public Long getSex()
- {
+ public Long getSex() {
return sex;
}
- public void setIccardno(String iccardno)
- {
+
+ public void setIccardno(String iccardno) {
this.iccardno = iccardno;
}
- public String getIccardno()
- {
+ public String getIccardno() {
return iccardno;
}
- public void setBirthdate(Date birthdate)
- {
+
+ public void setBirthdate(Date birthdate) {
this.birthdate = birthdate;
}
- public Date getBirthdate()
- {
+ public Date getBirthdate() {
return birthdate;
}
- public void setAge(Long age)
- {
+
+ public void setAge(Long age) {
this.age = age;
}
- public Long getAge()
- {
+ public Long getAge() {
return age;
}
- public void setSource(Long source)
- {
+
+ public void setSource(Long source) {
this.source = source;
}
- public Long getSource()
- {
+ public Long getSource() {
return source;
}
- public void setArchivetime(Date archivetime)
- {
+
+ public void setArchivetime(Date archivetime) {
this.archivetime = archivetime;
}
- public Date getArchivetime()
- {
+ public Date getArchivetime() {
return archivetime;
}
- public void setArchiveby(String archiveby)
- {
+
+ public void setArchiveby(String archiveby) {
this.archiveby = archiveby;
}
- public String getArchiveby()
- {
+ public String getArchiveby() {
return archiveby;
}
- public void setTelcode(String telcode)
- {
+
+ public void setTelcode(String telcode) {
this.telcode = telcode;
}
- public String getTelcode()
- {
+ public String getTelcode() {
return telcode;
}
- public void setRelativetelcode(String relativetelcode)
- {
+
+ public void setRelativetelcode(String relativetelcode) {
this.relativetelcode = relativetelcode;
}
- public String getRelativetelcode()
- {
+ public String getRelativetelcode() {
return relativetelcode;
}
- public void setIccardtype(String iccardtype)
- {
+
+ public void setIccardtype(String iccardtype) {
this.iccardtype = iccardtype;
}
- public String getIccardtype()
- {
+ public String getIccardtype() {
return iccardtype;
}
- public void setOrgid(String orgid)
- {
+
+ public void setOrgid(String orgid) {
this.orgid = orgid;
}
- public String getOrgid()
- {
+ public String getOrgid() {
return orgid;
}
- public void setOpenid(String openid)
- {
+
+ public void setOpenid(String openid) {
this.openid = openid;
}
- public String getOpenid()
- {
+ public String getOpenid() {
return openid;
}
- public void setDelFlag(String delFlag)
- {
+
+ public void setDelFlag(String delFlag) {
this.delFlag = delFlag;
}
- public String getDelFlag()
- {
+ public String getDelFlag() {
return delFlag;
}
- public void setIsupload(Long isupload)
- {
+
+ public void setIsupload(Long isupload) {
this.isupload = isupload;
}
- public Long getIsupload()
- {
+ public Long getIsupload() {
return isupload;
}
- public void setUploadTime(Date uploadTime)
- {
+
+ public void setUploadTime(Date uploadTime) {
this.uploadTime = uploadTime;
}
- public Date getUploadTime()
- {
+ public Date getUploadTime() {
return uploadTime;
+ }
+
+ public String getTag() {
+ return tag;
+ }
+
+ public void setTag(String tag) {
+ this.tag = tag;
}
@Override
public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("patid", getPatid())
- .append("name", getName())
- .append("sex", getSex())
- .append("iccardno", getIccardno())
- .append("birthdate", getBirthdate())
- .append("age", getAge())
- .append("source", getSource())
- .append("archivetime", getArchivetime())
- .append("archiveby", getArchiveby())
- .append("telcode", getTelcode())
- .append("relativetelcode", getRelativetelcode())
- .append("iccardtype", getIccardtype())
- .append("orgid", getOrgid())
- .append("openid", getOpenid())
- .append("delFlag", getDelFlag())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("isupload", getIsupload())
- .append("uploadTime", getUploadTime())
- .toString();
+ return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("patid", getPatid()).append("name", getName()).append("sex", getSex()).append("iccardno", getIccardno()).append("birthdate", getBirthdate()).append("age", getAge()).append("source", getSource()).append("archivetime", getArchivetime()).append("archiveby", getArchiveby()).append("telcode", getTelcode()).append("relativetelcode", getRelativetelcode()).append("iccardtype", getIccardtype()).append("orgid", getOrgid()).append("openid", getOpenid()).append("delFlag", getDelFlag()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("isupload", getIsupload()).append("uploadTime", getUploadTime()).toString();
}
}
--
Gitblit v1.9.3