package com.panzhihua.common.model.vos.community;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
/**
|
* @description: 批量导出奖励台账记录
|
* @author: Null
|
* @date: 2021/3/11 17:11
|
*/
|
@Data
|
public class ComActUserWalletTradeRewardExcelVO implements Serializable {
|
/**
|
* 金额
|
*/
|
@ExcelProperty(value = "金额", index = 0)
|
private BigDecimal amount;
|
/**
|
* 姓名
|
*/
|
@ExcelProperty(value = "姓名", index = 1)
|
private String userName;
|
|
/**
|
* 用户手机号
|
*/
|
@ExcelProperty(value = "用户手机号", index = 2)
|
private String phone;
|
|
@ExcelProperty(value = "奖励类别", index = 3)
|
private String type;
|
|
@ExcelProperty(value = "奖励内容", index = 4)
|
private String remark;
|
|
/**
|
* 时间
|
*/
|
@ExcelProperty(value = "时间", index = 5)
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createAt;
|
|
/**
|
* 操作人
|
*/
|
@ExcelProperty(value = "操作人", index = 6)
|
private String createBy;
|
|
}
|