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
package com.stylefeng.guns.modular.system.controller.resp;
 
import com.stylefeng.guns.modular.system.model.TBranchOffice;
import io.swagger.annotations.ApiModelProperty;
 
import java.math.BigDecimal;
 
public class TBranchOfficeResp extends TBranchOffice {
 
    @ApiModelProperty(value = "订单数量")
    private Integer orderCount=0;
 
    @ApiModelProperty(value = "有效订单")
    private Integer effectiveOrderCount=0;
 
    @ApiModelProperty(value = "已发放优惠券")
    private Integer totalCount=0;
 
    @ApiModelProperty(value = "已使用优惠券")
    private Integer usedCount=0;
 
    @ApiModelProperty(value = "累计优惠券金额")
    private BigDecimal orderPriceCount=BigDecimal.ZERO;
 
    @ApiModelProperty(value = "司机数量")
    private Integer driverCount;
 
    @ApiModelProperty(value = "用户角色")
    private Integer userType;
 
    public Integer getUserType() {
        return userType;
    }
 
    public void setUserType(Integer userType) {
        this.userType = userType;
    }
 
    public Integer getDriverCount() {
        return driverCount;
    }
 
    public void setDriverCount(Integer driverCount) {
        this.driverCount = driverCount;
    }
 
    public Integer getOrderCount() {
        return orderCount;
    }
 
    public void setOrderCount(Integer orderCount) {
        this.orderCount = orderCount;
    }
 
    public Integer getEffectiveOrderCount() {
        return effectiveOrderCount;
    }
 
    public void setEffectiveOrderCount(Integer effectiveOrderCount) {
        this.effectiveOrderCount = effectiveOrderCount;
    }
 
    public Integer getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(Integer totalCount) {
        this.totalCount = totalCount;
    }
 
    public Integer getUsedCount() {
        return usedCount;
    }
 
    public void setUsedCount(Integer usedCount) {
        this.usedCount = usedCount;
    }
 
    public BigDecimal getOrderPriceCount() {
        return orderPriceCount;
    }
 
    public void setOrderPriceCount(BigDecimal orderPriceCount) {
        this.orderPriceCount = orderPriceCount;
    }
}