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.
|
|
|
package com.epmet.excel;
|
|
|
|
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 福利表
|
|
|
|
*
|
|
|
|
* @author generator generator@elink-cn.com
|
|
|
|
* @since v1.0.0 2022-05-09
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
public class ChangeWelfareExcel {
|
|
|
|
|
|
|
|
// @Excel(name = "主键")
|
|
|
|
// private String id;
|
|
|
|
//
|
|
|
|
// @Excel(name = "epmet用户主键")
|
|
|
|
// private String userId;
|
|
|
|
//
|
|
|
|
// @Excel(name = "epmet网格ID")
|
|
|
|
// private String gridId;
|
|
|
|
|
|
|
|
@Excel(name = "姓名")
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
@Excel(name = "证件号")
|
|
|
|
private String idCard;
|
|
|
|
|
|
|
|
@Excel(name = "手机号")
|
|
|
|
private String mobile;
|
|
|
|
|
|
|
|
@Excel(name = "性别",replace = { "男_1", "女_0", "女_2", " _null"} )
|
|
|
|
private String gender;
|
|
|
|
|
|
|
|
// @Excel(name = "类型")
|
|
|
|
// private String type;
|
|
|
|
//
|
|
|
|
@Excel(name = "加入时间")
|
|
|
|
private String joinDate;
|
|
|
|
//
|
|
|
|
// @Excel(name = "加入原因")
|
|
|
|
// private String joinReason;
|
|
|
|
|
|
|
|
// @Excel(name = "移除时间")
|
|
|
|
// private String removeDate;
|
|
|
|
//
|
|
|
|
// @Excel(name = "移除原因")
|
|
|
|
// private String removeReason;
|
|
|
|
//
|
|
|
|
// @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;
|
|
|
|
//
|
|
|
|
// @Excel(name = "客户ID")
|
|
|
|
// private String customerId;
|
|
|
|
|
|
|
|
|
|
|
|
}
|