package com.panzhihua.common.model.vos.community; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * @title: ComPensionAuthPensionerVO 养老金人员表实体类 * @projectName: 成都呐喊信息技术有限公司-智慧社区项目 * @description: 养老金人员表实体类 * @author: hans * @date: 2021/09/01 16:30 */ @Data @ApiModel("养老认证记录") public class ComPensionAuthPensionerVO { @ApiModelProperty(value = "主键id") private Long id; @ApiModelProperty(value = "人口id") private Long populationId; @ApiModelProperty(value = "街道id") private Long streetId; @ApiModelProperty(value = "社区id") private Long communityId; @ApiModelProperty(value = "联系电话") private String phone; @ApiModelProperty(value = "姓名") private String name; @ApiModelProperty(value = "身份证号") private String idCard; @ApiModelProperty(value = "性别") private Integer sex; @ApiModelProperty(value = "年龄") private Integer age; @ApiModelProperty(value = "出生日期") private String birthday; @ApiModelProperty(value = "人员类别(1.80-89周岁 2.90-99周岁 3.100周岁(含)以上)") private Integer personnelCategory; @ApiModelProperty(value = "是否养老登记(1.是 0.否)") private Integer isRegister; @ApiModelProperty(value = "是否健在(1.是 0.否)") private Integer isAlive; @ApiModelProperty(value = "居住地址") private String address; @ApiModelProperty(value = "备注") private String remark; @ApiModelProperty(value = "养老金开始领取日期") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date receiveAllowanceBegin; @ApiModelProperty(value = "创建时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date createAt; @ApiModelProperty(value = "创建用户") private Long createBy; @ApiModelProperty(value = "更新时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date updateAt; @ApiModelProperty(value = "修改用户") private Long updateBy; }