puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
package com.stylefeng.guns.modular.system.controller.resp;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModelProperty;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
public class RevenueExpenditureResp implements Serializable {
 
 
    @ApiModelProperty(value = "主键")
    private Integer id;
 
    @ApiModelProperty(value = "订单号")
    private String code;
 
    @ApiModelProperty(value = "交易时间")
    private Date businessTime;
 
    @ApiModelProperty(value = "交易类型 1=支付订单 11=佣金体现 12=余额提现")
    private Integer businessType;
 
    @ApiModelProperty(value = "司机姓名")
    private String driverName;
 
    @ApiModelProperty(value = "司机电话")
    private  String driverPhone;
 
    @ApiModelProperty(value = "支付类型 1微信支付 2余额支付 3线下收款")
    private  Integer payType;
 
    @ApiModelProperty(value = "金额")
    private BigDecimal amount;
 
    @ApiModelProperty(value = "佣金抽成")
    private BigDecimal commissionAmount;
 
    @ApiModelProperty(value = "优惠券金额")
    private BigDecimal discountedPrice;
 
    @ApiModelProperty(value = "余额")
    private BigDecimal accountBalance;
 
    @ApiModelProperty(value = "状态 (2、108、109)完成")
    private Integer state;
 
    @ApiModelProperty(value = "司机id")
    private Integer driverId;
 
    @ApiModelProperty(value = "订单金额")
    private BigDecimal payMoney;
 
    @ApiModelProperty(value = "订单ID")
    private Integer orderId;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getOrderId() {
        return orderId;
    }
 
    public void setOrderId(Integer orderId) {
        this.orderId = orderId;
    }
 
    public BigDecimal getPayMoney() {
        return payMoney;
    }
 
    public void setPayMoney(BigDecimal payMoney) {
        this.payMoney = payMoney;
    }
 
    public Integer getDriverId() {
        return driverId;
    }
 
    public void setDriverId(Integer driverId) {
        this.driverId = driverId;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public Date getBusinessTime() {
        return businessTime;
    }
 
    public void setBusinessTime(Date businessTime) {
        this.businessTime = businessTime;
    }
 
    public Integer getBusinessType() {
        return businessType;
    }
 
    public void setBusinessType(Integer businessType) {
        this.businessType = businessType;
    }
 
    public String getDriverName() {
        return driverName;
    }
 
    public void setDriverName(String driverName) {
        this.driverName = driverName;
    }
 
    public String getDriverPhone() {
        return driverPhone;
    }
 
    public void setDriverPhone(String driverPhone) {
        this.driverPhone = driverPhone;
    }
 
    public Integer getPayType() {
        return payType;
    }
 
    public void setPayType(Integer payType) {
        this.payType = payType;
    }
 
    public BigDecimal getAmount() {
        return amount;
    }
 
    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }
 
    public BigDecimal getCommissionAmount() {
        return commissionAmount;
    }
 
    public void setCommissionAmount(BigDecimal commissionAmount) {
        this.commissionAmount = commissionAmount;
    }
 
    public BigDecimal getDiscountedPrice() {
        return discountedPrice;
    }
 
    public void setDiscountedPrice(BigDecimal discountedPrice) {
        this.discountedPrice = discountedPrice;
    }
 
    public BigDecimal getAccountBalance() {
        return accountBalance;
    }
 
    public void setAccountBalance(BigDecimal accountBalance) {
        this.accountBalance = accountBalance;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
}