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;
|
import java.math.BigDecimal;
|
|
@Data
|
@ApiModel(value = "提现管理-导出")
|
public class WithdrawExport implements Serializable {
|
|
@Excel(name = "提现单号",width = 30)
|
private String code;
|
@Excel(name = "用户昵称",width = 30)
|
private String userName;
|
@Excel(name = "用户手机号",width = 30)
|
private String cellphone;
|
@Excel(name = "提现金额",width = 30)
|
private String amount;
|
@Excel(name = "提现方式",width = 30,replace = {"银行卡提现_1"})
|
private String withdrawType;
|
@Excel(name = "提现状态",width = 30,replace = {"提现中_0","已完成_1","提现失败_2"})
|
private String withdrawStatus;
|
@Excel(name = "提现时间",width = 30 )
|
private String createTime;
|
|
}
|