puzhibing
2023-05-22 e55987208ea639e33006e78146a47266a4b2ed6d
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
package com.stylefeng.guns.modular.system.controller.resp;
 
import com.stylefeng.guns.modular.system.model.TDriver;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModelProperty;
 
public class TDriverResp extends TDriver {
 
    //所属代理商
    @ApiModelProperty(value = "所属代理商")
    private String agentName;
    //所属分公司
    @ApiModelProperty(value = "所属分公司")
    private String branchName;
    //累计订单量
    @ApiModelProperty(value = "累计订单量")
    private Integer cumulativeOrderCount;
    //当月订单量
    @ApiModelProperty(value = "当月订单量")
    private Integer monthOrderCount;
    //拒单次数
    @ApiModelProperty(value = "拒单次数")
    private Integer refusalCount;
 
    @ApiModelProperty(value = "连续未上线天数")
    private Integer notOnlineCount;
 
 
    @ApiModelProperty(value = "邀请人姓名")
    private String inviterName;
 
    @ApiModelProperty(value = "邀请人电话")
    private String inviterPhone;
 
    @ApiModelProperty(value = "加盟区域")
    private String area;
 
    @ApiModelProperty(value = "加盟区域ID")
    private String areaId;
 
    @Override
    public String getAreaId() {
        return areaId;
    }
 
    @Override
    public void setAreaId(String areaId) {
        this.areaId = areaId;
    }
 
    public String getInviterName() {
        return inviterName;
    }
 
    public void setInviterName(String inviterName) {
        this.inviterName = inviterName;
    }
 
    public String getInviterPhone() {
        return inviterPhone;
    }
 
    public void setInviterPhone(String inviterPhone) {
        this.inviterPhone = inviterPhone;
    }
 
    @Override
    public String getArea() {
        return area;
    }
 
    @Override
    public void setArea(String area) {
        this.area = area;
    }
 
    public Integer getNotOnlineCount() {
        return notOnlineCount;
    }
 
    public void setNotOnlineCount(Integer notOnlineCount) {
        this.notOnlineCount = notOnlineCount;
    }
 
    public String getAgentName() {
        return agentName;
    }
 
    public void setAgentName(String agentName) {
        this.agentName = agentName;
    }
 
    public String getBranchName() {
        return branchName;
    }
 
    public void setBranchName(String branchName) {
        this.branchName = branchName;
    }
 
    public Integer getCumulativeOrderCount() {
        return cumulativeOrderCount;
    }
 
    public void setCumulativeOrderCount(Integer cumulativeOrderCount) {
        this.cumulativeOrderCount = cumulativeOrderCount;
    }
 
    public Integer getMonthOrderCount() {
        return monthOrderCount;
    }
 
    public void setMonthOrderCount(Integer monthOrderCount) {
        this.monthOrderCount = monthOrderCount;
    }
 
    public Integer getRefusalCount() {
        return refusalCount;
    }
 
    public void setRefusalCount(Integer refusalCount) {
        this.refusalCount = refusalCount;
    }
}