935090232@qq.com
2021-01-06 e3dae73ced9ac1180a35e303c3fc3ee89ab477aa
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.matrix.system.app.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
/**
 * @author wzy
 * @date 2020-12-29
 **/
@ApiModel(value = "BusinessDataShowVo", description = "经营报表返回参数类")
public class BusinessesDataShowVo {
 
    @ApiModelProperty(value = "时间")
    private String dataTime;
 
    @ApiModelProperty(value = "营业收入")
    private String totalPay;
 
    @ApiModelProperty(value = "现金收入")
    private String cashPay;
 
    @ApiModelProperty(value = "余额划扣")
    private String cardPay;
 
    @ApiModelProperty(value = "欠款")
    private String arrearsPay;
 
    @ApiModelProperty(value = "赠送消耗")
    private String freeConsumePay;
 
    @ApiModelProperty(value = "本金消耗")
    private String consumePay;
 
    @ApiModelProperty(value = "现金退款")
    private String refundCashPay;
 
    @ApiModelProperty(value = "卡项退款")
    private String refundCardPay;
 
    public String getDataTime() {
        return dataTime;
    }
 
    public void setDataTime(String dataTime) {
        this.dataTime = dataTime;
    }
 
    public String getTotalPay() {
        return totalPay;
    }
 
    public void setTotalPay(String totalPay) {
        this.totalPay = totalPay;
    }
 
    public String getCashPay() {
        return cashPay;
    }
 
    public void setCashPay(String cashPay) {
        this.cashPay = cashPay;
    }
 
    public String getCardPay() {
        return cardPay;
    }
 
    public void setCardPay(String cardPay) {
        this.cardPay = cardPay;
    }
 
    public String getArrearsPay() {
        return arrearsPay;
    }
 
    public void setArrearsPay(String arrearsPay) {
        this.arrearsPay = arrearsPay;
    }
 
    public String getFreeConsumePay() {
        return freeConsumePay;
    }
 
    public void setFreeConsumePay(String freeConsumePay) {
        this.freeConsumePay = freeConsumePay;
    }
 
    public String getConsumePay() {
        return consumePay;
    }
 
    public void setConsumePay(String consumePay) {
        this.consumePay = consumePay;
    }
 
    public String getRefundCashPay() {
        return refundCashPay;
    }
 
    public void setRefundCashPay(String refundCashPay) {
        this.refundCashPay = refundCashPay;
    }
 
    public String getRefundCardPay() {
        return refundCardPay;
    }
 
    public void setRefundCardPay(String refundCardPay) {
        this.refundCardPay = refundCardPay;
    }
}