forked from luyan/epmet-cloud-lingshan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
2.2 KiB
105 lines
2.2 KiB
package com.epmet.excel;
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 居民信息审核表
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-06-01
|
|
*/
|
|
@Data
|
|
public class IcResiUserConfirmExcel {
|
|
|
|
@Excel(name = "主键")
|
|
private String id;
|
|
|
|
@Excel(name = "客户Id customer.id")
|
|
private String customerId;
|
|
|
|
@Excel(name = "组织Id")
|
|
private String agencyId;
|
|
|
|
@Excel(name = "组织的pids")
|
|
private String pids;
|
|
|
|
@Excel(name = "网格ID")
|
|
private String gridId;
|
|
|
|
@Excel(name = "姓")
|
|
private String surname;
|
|
|
|
@Excel(name = "名")
|
|
private String name;
|
|
|
|
@Excel(name = "手机号")
|
|
private String mobile;
|
|
|
|
@Excel(name = "性别")
|
|
private String gender;
|
|
|
|
@Excel(name = "身份证号")
|
|
private String idCard;
|
|
|
|
@Excel(name = "出生日期")
|
|
private String birthday;
|
|
|
|
@Excel(name = "户籍所在地地区码")
|
|
private String hjszdCode;
|
|
|
|
@Excel(name = "户籍所在地")
|
|
private String hjszd;
|
|
|
|
@Excel(name = "现居住地地区码")
|
|
private String xjzdCode;
|
|
|
|
@Excel(name = "现居住地")
|
|
private String xjzd;
|
|
|
|
@Excel(name = "民族【字典表】")
|
|
private String mz;
|
|
|
|
@Excel(name = "与户主关系")
|
|
private String yhzgx;
|
|
|
|
@Excel(name = "审核状态0未审核,1审核通过,2审核不通过")
|
|
private String confirmResult;
|
|
|
|
@Excel(name = "审核不通过的原因")
|
|
private String reason;
|
|
|
|
@Excel(name = "删除标识 0.未删除 1.已删除")
|
|
private Integer delFlag;
|
|
|
|
@Excel(name = "乐观锁")
|
|
private Integer revision;
|
|
|
|
@Excel(name = "创建人")
|
|
private String createdBy;
|
|
|
|
@Excel(name = "创建时间")
|
|
private Date createdTime;
|
|
|
|
@Excel(name = "更新人")
|
|
private String updatedBy;
|
|
|
|
@Excel(name = "更新时间")
|
|
private Date updatedTime;
|
|
|
|
@Excel(name = "ic_resi_user表id")
|
|
private String icUserId;
|
|
|
|
@Excel(name = "操作类型:新增add 修改 update 删除 delete")
|
|
private String submitType;
|
|
|
|
@Excel(name = "删除原因")
|
|
private String deleteReason;
|
|
|
|
@Excel(name = "操作说明")
|
|
private String operationDescribe;
|
|
|
|
|
|
}
|