package com.xinquan.user.domain.export;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@ApiModel(value = "兑换记录管理-导出")
|
public class PrizeExport implements Serializable {
|
@Excel(name = "兑换时间",width = 30 )
|
private String createTime;
|
@Excel(name = "用户昵称",width = 30)
|
private String userName;
|
@Excel(name = "用户手机号",width = 30)
|
private String cellphone;
|
@Excel(name = "奖品名称",width = 30)
|
private String prizeName;
|
@Excel(name = "奖品价格",width = 30)
|
private String amount;
|
@Excel(name = "消耗能量值",width = 30)
|
private String energyValue;
|
@Excel(name = "提现状态",width = 30,replace = {"兑换中_1","已兑换_2"})
|
private String status;
|
|
|
}
|