xuhy
2023-02-21 ee00ca28898f7bc99b98fb8f8c1898058bb291de
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
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;
 
    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;
    }
}