无关风月
2024-12-16 fd88d7b527e99bbf7272d28bf0826b05e3c175d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.xinquan.order.domain.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "收支流水管理-导出")
public class WaterExport 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 realPayAmount;
    @Excel(name = "分佣支出",width = 30)
    private String commissionAmount;
    @Excel(name = "平台收益",width = 30)
    private String platformMoney;
    @Excel(name = "内容",width = 30)
    private String buyContent;
    @Excel(name = "订单来源",width = 30,replace = {"购买疗愈_1","购买课程_2","购买会员_3","余额充值_4","余额提现_5"})
    private String orderFrom;
    @ApiModelProperty(value = "支付方式 1微信 2支付宝 3内购 4余额 5微信+余额 6支付宝+余额 7内购加余额")
    @Excel(name = "支付方式",width = 30,replace = {"微信_1","支付宝_2","内购_3","余额_4","微信+余额_5","支付宝+余额_6","内购加余额_7"})
    private Integer payType;
    @Excel(name  = "下单时间",width = 30 )
    private String createTime;
    @Excel(name = "支付状态",width = 30,replace = {"待支付_1","已完成_2","已取消_3"})
    private String paymentStatus;
 
 
}