liusheng
2024-09-04 9526971c403417c1c007804f24884c443b9e6cd7
smartor/src/main/java/com/smartor/domain/PatArchive.java
@@ -28,7 +28,47 @@
     * 自增ID
     */
    @ApiModelProperty("自增ID")
    private Long patid;
    private Long id;
    /**
     * 父ID
     */
    @ApiModelProperty("父ID")
    private Long pid;
    /**
     * GUID
     */
    @ApiModelProperty("GUID")
    private Long guid;
    /**
     * 姓名
     */
    @ApiModelProperty("患者编号")
    @Excel(name = " 患者编号 ")
    private String patientno;
    /**
     * 来源(1:HIS;2:数据平台;3:文件导入)
     */
    @ApiModelProperty("来源(1:HIS;2:数据平台;3:文件导入)")
    @Excel(name = " 来源(1:HIS;2:数据平台;3:文件导入) ")
    private int sourcefrom;
    /**
     * his系统的患者id
     */
    @ApiModelProperty("his系统的患者id")
    @Excel(name = "his系统的患者id")
    private int patidHis;
    /**
     * his系统的患者id
     */
    @ApiModelProperty("his系统的患者id")
    @Excel(name = "his系统的患者id")
    private String sdFlag;
    /**
     * 姓名
@@ -59,7 +99,6 @@
    @Excel(name = " 籍贯 ")
    private String nativePlace;
    /**
     * 证件号码
     */
@@ -67,14 +106,12 @@
    @Excel(name = " 居住地 ")
    private String placeOfResidence;
    /**
     * 证件号码
     */
    @ApiModelProperty("出生地")
    @Excel(name = " 出生地 ")
    private String birthplace;
    /**
     * 证件号码
@@ -92,6 +129,14 @@
    private Date birthdate;
    /**
     * 入院时间
     */
    @ApiModelProperty("入院时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = " 生日 ", width = 30, dateFormat = "yyyy-MM-dd")
    private Date inhosptime;
    /**
     * 年龄
     */
    @ApiModelProperty("年龄")
@@ -99,17 +144,11 @@
    private Long age;
    /**
     * 来源
     */
    @ApiModelProperty("来源")
    @Excel(name = " 来源 ")
    private Long source;
    /**
     * 建档时间
     */
    @ApiModelProperty("建档时间")
    @Excel(name = " 建档时间 ")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date archivetime;
    /**
@@ -211,8 +250,19 @@
    @Excel(name = " 科室 ")
    private String dept;
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("patid", getPatid()).append("name", getName()).append("sex", getSex()).append("idcardno", getIdcardno()).append("birthdate", getBirthdate()).append("age", getAge()).append("source", getSource()).append("archivetime", getArchivetime()).append("archiveby", getArchiveby()).append("telcode", getTelcode()).append("relativetelcode", getRelativetelcode()).append("idcardtype", getIdcardtype()).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();
    }
    /**
     * 钉钉号
     */
    @ApiModelProperty("科室")
    @Excel(name = " 科室 ")
    private String bedNo;
    /**
     * 会员属性:0非会员,1一般会员、2重要会员
     */
    @ApiModelProperty("会员属性:0非会员,1一般会员、2重要会员")
    @Excel(name = " 会员属性:0非会员,1一般会员、2重要会员 ")
    private String viptype;
}