935090232@qq.com
2021-10-06 e7eea688585603c5a8f134d92762e8431d885d36
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
package com.matrix.system.app.vo;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2020-12-29
 **/
@ApiModel(value = "BusinessDataShowVo", description = "经营报表返回参数类")
public class BusinessesDataShowVo {
 
    @ApiModelProperty(value = "时间")
    private String dataTime;
 
    @ApiModelProperty(value = "营业收入")
    private BigDecimal totalPay;
 
    @ApiModelProperty(value = "现金收款")
    private BigDecimal cashPay;
 
    @ApiModelProperty(value = "储值卡收款")
    private BigDecimal cardPay;
 
    @ApiModelProperty(value = "欠款")
    private BigDecimal arrearsPay;
 
    @ApiModelProperty(value = "现金退款")
    private BigDecimal refundCashPay;
 
    @ApiModelProperty(value = "卡项退款")
    private BigDecimal refundCardPay;
 
    @ApiModelProperty(value = "产品业绩")
    private BigDecimal productAchieve;
 
    @ApiModelProperty(value = "卡项业绩")
    private BigDecimal cardAchieve;
 
    @ApiModelProperty(value = "储值卡本金扣款")
    private BigDecimal cardAmount;
 
    @ApiModelProperty(value = "储值卡增金扣款")
    private BigDecimal cardFreeAmount;
 
    @ApiModelProperty(value = "退款")
    private BigDecimal refund;
 
    @ApiModelProperty(value = "客单数")
    private BigDecimal perCustomCnt;
 
    @ApiModelProperty(value = "客品数")
    private BigDecimal customGoodsCnt;
 
    @ApiModelProperty(value = "客单价")
    private BigDecimal perCustomPrice;
 
    @ApiModelProperty(value = "成本")
    private BigDecimal cost;
 
    @ApiModelProperty(value = "毛利")
    private BigDecimal grossProfit;
 
    @ApiModelProperty(value = "毛利率")
    private BigDecimal grossProfitRate;
 
    @ApiModelProperty(value = "本金消耗")
    private BigDecimal consumePay;
 
    @ApiModelProperty(value = "赠送消耗")
    private BigDecimal freeConsumePay;
 
    @ApiModelProperty(value = "人头数")
    private BigDecimal peopleCnt;
 
    @ApiModelProperty(value = "项目消耗数")
    private BigDecimal projConsumeCnt;
 
    @ApiModelProperty(value = "服务时长")
    private BigDecimal timeLength;
 
    /**
     * 当天销售总数量
     */
    @ApiModelProperty(hidden = true)
    private Integer totalSaleCnt;
 
    /**
     * 家居产品成本
     */
    @ApiModelProperty(hidden = true)
    private BigDecimal goodsCost;
 
    /**
     * 除家具产品以外成本
     */
    @ApiModelProperty(hidden = true)
    private BigDecimal otherCost;
 
    public Integer getTotalSaleCnt() {
        return totalSaleCnt;
    }
 
    public void setTotalSaleCnt(Integer totalSaleCnt) {
        this.totalSaleCnt = totalSaleCnt;
    }
 
    public BigDecimal getGoodsCost() {
        return goodsCost;
    }
 
    public void setGoodsCost(BigDecimal goodsCost) {
        this.goodsCost = goodsCost;
    }
 
    public BigDecimal getOtherCost() {
        return otherCost;
    }
 
    public void setOtherCost(BigDecimal otherCost) {
        this.otherCost = otherCost;
    }
 
    public String getDataTime() {
        return dataTime;
    }
 
    public void setDataTime(String dataTime) {
        this.dataTime = dataTime;
    }
 
    public BigDecimal getTotalPay() {
        return totalPay;
    }
 
    public void setTotalPay(BigDecimal totalPay) {
        this.totalPay = totalPay;
    }
 
    public BigDecimal getCashPay() {
        return cashPay;
    }
 
    public void setCashPay(BigDecimal cashPay) {
        this.cashPay = cashPay;
    }
 
    public BigDecimal getCardPay() {
        return cardPay;
    }
 
    public void setCardPay(BigDecimal cardPay) {
        this.cardPay = cardPay;
    }
 
    public BigDecimal getArrearsPay() {
        return arrearsPay;
    }
 
    public void setArrearsPay(BigDecimal arrearsPay) {
        this.arrearsPay = arrearsPay;
    }
 
    public BigDecimal getFreeConsumePay() {
        return freeConsumePay;
    }
 
    public void setFreeConsumePay(BigDecimal freeConsumePay) {
        this.freeConsumePay = freeConsumePay;
    }
 
    public BigDecimal getConsumePay() {
        return consumePay.setScale(2, BigDecimal.ROUND_HALF_UP);
    }
 
    public void setConsumePay(BigDecimal consumePay) {
        this.consumePay = consumePay;
    }
 
    public BigDecimal getRefundCashPay() {
        return refundCashPay;
    }
 
    public void setRefundCashPay(BigDecimal refundCashPay) {
        this.refundCashPay = refundCashPay;
    }
 
    public BigDecimal getRefundCardPay() {
        return refundCardPay;
    }
 
    public void setRefundCardPay(BigDecimal refundCardPay) {
        this.refundCardPay = refundCardPay;
    }
 
    public BigDecimal getProductAchieve() {
        return productAchieve;
    }
 
    public void setProductAchieve(BigDecimal productAchieve) {
        this.productAchieve = productAchieve;
    }
 
    public BigDecimal getCardAchieve() {
        return cardAchieve;
    }
 
    public void setCardAchieve(BigDecimal cardAchieve) {
        this.cardAchieve = cardAchieve;
    }
 
    public BigDecimal getRefund() {
        return refund;
    }
 
    public void setRefund(BigDecimal refund) {
        this.refund = refund;
    }
 
    public BigDecimal getPerCustomCnt() {
        return perCustomCnt;
    }
 
    public void setPerCustomCnt(BigDecimal perCustomCnt) {
        this.perCustomCnt = perCustomCnt;
    }
 
    public BigDecimal getCustomGoodsCnt() {
        if (BigDecimal.ZERO.compareTo(perCustomCnt) != 0) {
            return new BigDecimal(totalSaleCnt).divide(perCustomCnt, 2, BigDecimal.ROUND_DOWN);
        } else {
            return BigDecimal.ZERO;
        }
    }
 
    public void setCustomGoodsCnt(BigDecimal customGoodsCnt) {
        this.customGoodsCnt = customGoodsCnt;
    }
 
    public BigDecimal getPerCustomPrice() {
        if (perCustomCnt.compareTo(BigDecimal.ZERO) != 0) {
            return totalPay.divide(perCustomCnt, 2, BigDecimal.ROUND_DOWN);
        } else {
            return BigDecimal.ZERO;
        }
    }
 
    public void setPerCustomPrice(BigDecimal perCustomPrice) {
        this.perCustomPrice = perCustomPrice;
    }
 
    public BigDecimal getCost() {
        return goodsCost.add(otherCost);
    }
 
    public void setCost(BigDecimal cost) {
        this.cost = cost;
    }
 
    public BigDecimal getGrossProfit() {
        return totalPay.subtract(getCost());
    }
 
    public void setGrossProfit(BigDecimal grossProfit) {
        this.grossProfit = grossProfit;
    }
 
    public BigDecimal getGrossProfitRate() {
        if (totalPay.compareTo(BigDecimal.ZERO) != 0) {
            return getGrossProfit().divide(totalPay, 2, BigDecimal.ROUND_DOWN);
        } else {
            return BigDecimal.ZERO;
        }
    }
 
    public void setGrossProfitRate(BigDecimal grossProfitRate) {
        this.grossProfitRate = grossProfitRate;
    }
 
    public BigDecimal getPeopleCnt() {
        return peopleCnt == null ? BigDecimal.ZERO : peopleCnt.setScale(2, BigDecimal.ROUND_DOWN);
    }
 
    public void setPeopleCnt(BigDecimal peopleCnt) {
        this.peopleCnt = peopleCnt;
    }
 
    public BigDecimal getProjConsumeCnt() {
        return projConsumeCnt;
    }
 
    public void setProjConsumeCnt(BigDecimal projConsumeCnt) {
        this.projConsumeCnt = projConsumeCnt;
    }
 
    public BigDecimal getTimeLength() {
        return timeLength;
    }
 
    public void setTimeLength(BigDecimal timeLength) {
        this.timeLength = timeLength;
    }
 
    public BigDecimal getCardAmount() {
        return cardAmount;
    }
 
    public void setCardAmount(BigDecimal cardAmount) {
        this.cardAmount = cardAmount;
    }
 
    public BigDecimal getCardFreeAmount() {
        return cardFreeAmount;
    }
 
    public void setCardFreeAmount(BigDecimal cardFreeAmount) {
        this.cardFreeAmount = cardFreeAmount;
    }
}