|
|
@ -1,5 +1,8 @@ |
|
|
|
package com.epmet.dto; |
|
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelIgnore; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
@ -17,126 +20,158 @@ public class DataSyncRecordDeathDTO implements Serializable { |
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
@ColumnWidth(50) |
|
|
|
@ExcelProperty("所属网格") |
|
|
|
private String gridName; |
|
|
|
/** |
|
|
|
* 主键 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String id; |
|
|
|
|
|
|
|
/** |
|
|
|
* 客户Id |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String customerId; |
|
|
|
|
|
|
|
/** |
|
|
|
* 组织Id |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String agencyId; |
|
|
|
|
|
|
|
/** |
|
|
|
* 组织的pids 含agencyId本身 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String pids; |
|
|
|
|
|
|
|
/** |
|
|
|
* 网格ID |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String gridId; |
|
|
|
|
|
|
|
/** |
|
|
|
* 姓名 |
|
|
|
*/ |
|
|
|
@ColumnWidth(15) |
|
|
|
@ExcelProperty("姓名") |
|
|
|
private String name; |
|
|
|
|
|
|
|
/** |
|
|
|
* 身份证 |
|
|
|
*/ |
|
|
|
@ColumnWidth(20) |
|
|
|
@ExcelProperty("证件号") |
|
|
|
private String idCard; |
|
|
|
|
|
|
|
/** |
|
|
|
* 居民Id,ic_resi_user.id |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String icResiUserId; |
|
|
|
|
|
|
|
/** |
|
|
|
* 年龄(享年) |
|
|
|
*/ |
|
|
|
@ColumnWidth(10) |
|
|
|
@ExcelProperty("年龄") |
|
|
|
private String age; |
|
|
|
|
|
|
|
/** |
|
|
|
* 家庭住址 |
|
|
|
*/ |
|
|
|
@ColumnWidth(40) |
|
|
|
@ExcelProperty("家庭住址") |
|
|
|
private String address; |
|
|
|
|
|
|
|
/** |
|
|
|
* 死亡时间 |
|
|
|
*/ |
|
|
|
@ColumnWidth(20) |
|
|
|
@ExcelProperty("死亡日期") |
|
|
|
private String deathDate; |
|
|
|
|
|
|
|
/** |
|
|
|
* 火化时间 |
|
|
|
*/ |
|
|
|
@ColumnWidth(20) |
|
|
|
@ExcelProperty("火化时间") |
|
|
|
private String cremationTime; |
|
|
|
|
|
|
|
/** |
|
|
|
* 民族 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String mz; |
|
|
|
|
|
|
|
/** |
|
|
|
* 登记单位名称 |
|
|
|
*/ |
|
|
|
@ColumnWidth(40) |
|
|
|
@ExcelProperty("登记单位名称") |
|
|
|
private String organName; |
|
|
|
|
|
|
|
/** |
|
|
|
* 国籍 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String nation; |
|
|
|
|
|
|
|
/** |
|
|
|
* 第三方记录唯一标识 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String thirdRecordId; |
|
|
|
|
|
|
|
/** |
|
|
|
* 处理状态(更新至居民信息) 0:未处理;1:处理成功;2处理失败 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private Integer dealStatus; |
|
|
|
|
|
|
|
/** |
|
|
|
* 处理结果 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String dealResult; |
|
|
|
|
|
|
|
/** |
|
|
|
* 删除标识:0.未删除 1.已删除 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private Integer delFlag; |
|
|
|
|
|
|
|
/** |
|
|
|
* 乐观锁 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private Integer revision; |
|
|
|
|
|
|
|
/** |
|
|
|
* 创建人 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String createdBy; |
|
|
|
|
|
|
|
/** |
|
|
|
* 创建时间 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private Date createdTime; |
|
|
|
|
|
|
|
/** |
|
|
|
* 更新人 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private String updatedBy; |
|
|
|
|
|
|
|
/** |
|
|
|
* 更新时间 |
|
|
|
*/ |
|
|
|
@ExcelIgnore |
|
|
|
private Date updatedTime; |
|
|
|
|
|
|
|
private String gridName; |
|
|
|
|
|
|
|
} |
|
|
|