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.
125 lines
2.4 KiB
125 lines
2.4 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-05-06
|
|
*/
|
|
@Data
|
|
public class ChangeRelocationExcel {
|
|
|
|
// @Excel(name = "主键")
|
|
// private String id;
|
|
|
|
@Excel(name = "姓名")
|
|
private String name;
|
|
|
|
@Excel(name = "所属网格")
|
|
private String agencyName;
|
|
|
|
@Excel(name = "所属房屋")
|
|
private String oldAddress;
|
|
|
|
@Excel(name = "户主姓名")
|
|
private String ownerName;
|
|
|
|
@Excel(name = "手机号")
|
|
private String mobile;
|
|
|
|
@Excel(name = "证件号")
|
|
private String idCard;
|
|
|
|
@Excel(name = "性别")
|
|
private String gender;
|
|
|
|
@Excel(name = "年龄")
|
|
private String age;
|
|
|
|
@Excel(name = "迁出时间", format = "yyyy-MM-dd")
|
|
private Date outOfTime;
|
|
|
|
@Excel(name = "迁出原因")
|
|
private String reason;
|
|
|
|
@Excel(name = "迁往何地")
|
|
private String address;
|
|
|
|
// @Excel(name = "组织PID")
|
|
// private String pid;
|
|
|
|
// @Excel(name = "组织ID")
|
|
// private String agencyId;
|
|
|
|
|
|
|
|
// @Excel(name = "房屋小区ID")
|
|
// private String villageId;
|
|
|
|
// @Excel(name = "房屋小区")
|
|
// private String villageName;
|
|
|
|
// @Excel(name = "楼号ID")
|
|
// private String buildId;
|
|
|
|
// @Excel(name = "楼号")
|
|
// private String buildName;
|
|
|
|
// @Excel(name = "单元ID")
|
|
// private String unitId;
|
|
|
|
// @Excel(name = "单元")
|
|
// private String unitName;
|
|
|
|
// @Excel(name = "房屋ID")
|
|
// private String homeId;
|
|
|
|
// @Excel(name = "房屋")
|
|
// private String homeName;
|
|
|
|
|
|
// @Excel(name = "操作类型",replace = { "客户外_out", "客户内_in"} )
|
|
// private String type;
|
|
//
|
|
//
|
|
//
|
|
// @Excel(name = "原网格信息")
|
|
// private String oldDept;
|
|
//
|
|
|
|
|
|
// @Excel(name = "原房间号")
|
|
// private String oldHome;
|
|
|
|
|
|
|
|
// @Excel(name = "删除标记 0:未删除,1:已删除")
|
|
// private String delFlag;
|
|
//
|
|
// @Excel(name = "乐观锁")
|
|
// private Integer revision;
|
|
//
|
|
// @Excel(name = "创建人")
|
|
// private String createdBy;
|
|
|
|
|
|
|
|
// @Excel(name = "创建时间", format = "yyyy-MM-dd HH:mm:ss")
|
|
// private Date createdTime;
|
|
|
|
// @Excel(name = "更新人")
|
|
// private String updatedBy;
|
|
//
|
|
// @Excel(name = "更新时间")
|
|
// private Date updatedTime;
|
|
//
|
|
// @Excel(name = "客户ID")
|
|
// private String customerId;
|
|
|
|
|
|
}
|
|
|