rk
3 小时以前 c74a6f59490cfb9a0ee37f70427739b74e7fbd58
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
package com.doumee.dao.vo;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
@ApiModel("平台财务总览项")
public class FinanceOverviewVO implements Serializable {
 
    @ExcelColumn(name = "年月", width = 14, index = 1)
    @ApiModelProperty(value = "年月(如2026-01)")
    private String date;
 
    @ExcelColumn(name = "寄存订单营收(元)", width = 18, index = 2)
    @ApiModelProperty(value = "寄存订单营收(元)")
    private BigDecimal storageRevenue;
 
    @ExcelColumn(name = "寄送订单营收(元)", width = 18, index = 3)
    @ApiModelProperty(value = "寄送订单营收(元)")
    private BigDecimal deliveryRevenue;
 
    @ExcelColumn(name = "平台总营收(元)", width = 18, index = 4)
    @ApiModelProperty(value = "平台总营收(元)")
    private BigDecimal totalRevenue;
 
    @ExcelColumn(name = "门店分成总额(元)", width = 18, index = 5)
    @ApiModelProperty(value = "门店分成总额(元)")
    private BigDecimal shopFeeTotal;
 
    @ExcelColumn(name = "司机分成总额(元)", width = 18, index = 6)
    @ApiModelProperty(value = "司机分成总额(元)")
    private BigDecimal driverFeeTotal;
 
    @ExcelColumn(name = "退款总金额(元)", width = 18, index = 7)
    @ApiModelProperty(value = "退款总金额(元)")
    private BigDecimal refundAmount;
 
    @ExcelColumn(name = "逾期费用(元)", width = 18, index = 8)
    @ApiModelProperty(value = "逾期费用(元)")
    private BigDecimal overdueAmount;
 
    @ExcelColumn(name = "平台净营收(元)", width = 18, index = 9)
    @ApiModelProperty(value = "平台净营收(元)")
    private BigDecimal netRevenue;
}