liusheng
2024-07-30 ae3200fadc28f925e516d85da7fcb78d402960f7
smartor/src/main/java/com/smartor/domain/PatArchiveVO.java
@@ -28,7 +28,7 @@
     * 自增ID
     */
    @ApiModelProperty(value = "自增ID")
    private Long patid;
    private Long id;
    /**
     * 姓名
@@ -66,17 +66,38 @@
    @Excel(name = " 年龄 ")
    private Long age;
    /**
     * 证件号码
     */
    @ApiModelProperty("居住地")
    @Excel(name = " 居住地 ")
    private String placeOfResidence;
    /**
     * 证件号码
     */
    @ApiModelProperty("出生地")
    @Excel(name = " 出生地 ")
    private String birthplace;
    /**
     * 来源
     */
    @ApiModelProperty("来源")
    @Excel(name = " 来源 ")
    private Long source;
    private Long sourcefrom;
    /**
     * 建档时间
     */
    /**
     * 建档时间
     */
    @ApiModelProperty("建档时间")
    @Excel(name = " 建档时间 ")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date archivetime;
    /**
@@ -147,8 +168,4 @@
    @ApiModelProperty(value = "是否存在操作:1 新增 2修改 3删除")
    private Integer isoperation;
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("patid", getPatid()).append("name", getName()).append("sex", getSex()).append("iccardno", getIdcardno()).append("birthdate", getBirthdate()).append("age", getAge()).append("source", getSource()).append("archivetime", getArchivetime()).append("archiveby", getArchiveby()).append("telcode", getTelcode()).append("relativetelcode", getRelativetelcode()).append("iccardtype", 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();
    }
}