LineInfoResponse.java
2.38 KB
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
/*
 * @(#)EventDeleteResponse.java
 *
 * Copyright (c) 2014-2017  xiniunet 版权所有
 * xiniunet. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xiniunet.
 * ("Confidential Information"). You shall not disclose
 * such Confidential Information and shall use it only
 * in accordance with the terms of the contract agreement
 * you entered into with xiniunet.
 */
package com.xiniunet.railway.response;
import com.xiniunet.framework.base.BaseResponse;
import com.xiniunet.railway.domain.CompanyInfo;
import com.xiniunet.railway.domain.LineInfo;
import com.xiniunet.railway.domain.UserPosition;
import java.util.List;
/**
 * 删除事件的响应.
 * @author xiniunet
 */
public class LineInfoResponse extends BaseResponse {
    /**
     * 各航线人次
     */
    private List<LineInfo> lineCountList;
    /**
     * 各航线人数
     */
    private List<LineInfo> lineNumberList;
    /**
     * 各公司人次
     */
    private List<CompanyInfo> companyCountList;
    /**
     * 各公司人数
     */
    private List<CompanyInfo> companyNumberList;
    /**
     * 总人次
     */
    private Long totalCount;
    /**
     * 总人数
     */
    private Long totalNumber;
    public List<LineInfo> getLineCountList() {
        return lineCountList;
    }
    public void setLineCountList(List<LineInfo> lineCountList) {
        this.lineCountList = lineCountList;
    }
    public List<LineInfo> getLineNumberList() {
        return lineNumberList;
    }
    public void setLineNumberList(List<LineInfo> lineNumberList) {
        this.lineNumberList = lineNumberList;
    }
    public List<CompanyInfo> getCompanyCountList() {
        return companyCountList;
    }
    public void setCompanyCountList(List<CompanyInfo> companyCountList) {
        this.companyCountList = companyCountList;
    }
    public List<CompanyInfo> getCompanyNumberList() {
        return companyNumberList;
    }
    public void setCompanyNumberList(List<CompanyInfo> companyNumberList) {
        this.companyNumberList = companyNumberList;
    }
    public Long getTotalCount() {
        return totalCount;
    }
    public void setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
    }
    public Long getTotalNumber() {
        return totalNumber;
    }
    public void setTotalNumber(Long totalNumber) {
        this.totalNumber = totalNumber;
    }
}