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.
83 lines
1.9 KiB
83 lines
1.9 KiB
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 = "姓名",width = 20)
|
|
private String name;
|
|
|
|
@Excel(name = "证件号",width = 20)
|
|
private String idCard;
|
|
|
|
@Excel(name = "手机号",width = 20)
|
|
private String mobile;
|
|
|
|
@Excel(name = "性别",replace = { "男_1", "女_0", "女_2", " _null"} )
|
|
private String gender;
|
|
|
|
// @Excel(name = "类型")
|
|
// private String type;
|
|
//
|
|
@Excel(name = "加入时间",width = 25)
|
|
private String joinDate;
|
|
/**
|
|
* 福利发放标识:1:已发放;0:未发放
|
|
*/
|
|
@Excel(name = "福利发放",replace = { "已发放_1", "未发放_0", "_null"},width = 20)
|
|
private Integer grantFlag;
|
|
/**
|
|
* 福利类别
|
|
*/
|
|
@Excel(name = "福利类别",width = 120)
|
|
private String categoryName;
|
|
//
|
|
// @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;
|
|
|
|
|
|
}
|
|
|