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.
51 lines
1018 B
51 lines
1018 B
package com.epmet.excel;
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 居民定时任务log
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2023-05-18
|
|
*/
|
|
@Data
|
|
public class IcResiUserTaskLogExcel {
|
|
|
|
@Excel(name = "主键")
|
|
private String id;
|
|
|
|
@Excel(name = "客户Id customer.id")
|
|
private String customerId;
|
|
|
|
@Excel(name = "0:正常数据 1:特殊数据")
|
|
private Integer dataType;
|
|
|
|
@Excel(name = "数据数量")
|
|
private Integer dataCount;
|
|
|
|
@Excel(name = "婚姻:hunyin")
|
|
private String type;
|
|
|
|
@Excel(name = "删除标识 0.未删除 1.已删除")
|
|
private String 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;
|
|
|
|
|
|
}
|