ss
jiangping
2023-11-07 61190752c2edf563ebce2f7c94653b6a91cf8c5e
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.doumee.dao.business.model;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.math.BigDecimal;
 
/**
 * 
 * @author 江蹄蹄
 * @date 2023/09/27 18:08
 */
@Data
@ApiModel("")
@TableName("\"ali_bill\"")
public class AliBill {
 
    @ApiModelProperty(value = "")
    @ExcelColumn(name="")
    private String id;
 
    @ApiModelProperty(value = "总交易单数", example = "1")
    @ExcelColumn(name="总交易单数")
    private Integer sumBill;
 
    @ApiModelProperty(value = "退款的订单数", example = "1")
    @ExcelColumn(name="退款的订单数")
    private Integer sumRefundBill;
 
    @ApiModelProperty(value = "应结订单总金额", example = "1")
    @ExcelColumn(name="应结订单总金额")
    private BigDecimal sumSuccessFee;
 
    @ApiModelProperty(value = "退款总金额", example = "1")
    @ExcelColumn(name="退款总金额")
    private BigDecimal sumRefundFee;
 
    @ApiModelProperty(value = "充值券退款总金额", example = "1")
    @ExcelColumn(name="充值券退款总金额")
    private BigDecimal sumCouponRefundFee;
 
    @ApiModelProperty(value = "手续费总金额", example = "1")
    @ExcelColumn(name="手续费总金额")
    private BigDecimal sumCmmsAmt;
 
    @ApiModelProperty(value = "订单总金额", example = "1")
    @ExcelColumn(name="订单总金额")
    private BigDecimal sumTotalFee;
 
    @ApiModelProperty(value = "申请退款总金额", example = "1")
    @ExcelColumn(name="申请退款总金额")
    private BigDecimal sumApplyRefundFee;
 
    @ApiModelProperty(value = "退款手续费总金额", example = "1")
    @ExcelColumn(name="退款手续费总金额")
    private BigDecimal sumRefundCmmsAmt;
 
    @ApiModelProperty(value = "结算金额", example = "1")
    @ExcelColumn(name="结算金额")
    private BigDecimal total;
 
    @ApiModelProperty(value = "自行车收入", example = "1")
    @ExcelColumn(name="自行车收入")
    private BigDecimal bikeFee;
 
}