Helius
2021-12-30 c197ea1f3078de4d4c0e753c8a54caca5b9d5bc2
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
package com.matrix.system.hive.pojo;
/**
 * 客户信息导出实体类
* @ClassName: CustInfoVo 
* @author jyy
* @date 2016年8月10日 上午11:56:52 
*
 */
public class CustInfoVo {
 
    /**
     * 到店人数
     */
    private Integer arrivalNum;
    /**
     * 成交人数
     */
    private Integer transactionNum;
    /**
     * 成交金额
     */
    private String transactionMoney;
    /**
     * 所属门店
     */
    private Integer shopId;
    /**
     * 时间条件
     */
    private String time;
    /**
     * 年(接收页面传参)
     */
    private String year;
    /**
     * 月(接收页面传参)
     */
    private String month;
    
    public String getYear() {
        return year;
    }
    public void setYear(String year) {
        this.year = year;
    }
    public String getMonth() {
        return month;
    }
    public void setMonth(String month) {
        this.month = month;
    }
    public String getTime() {
        return time;
    }
    public void setTime(String time) {
        this.time = time;
    }
    public Integer getShopId() {
        return shopId;
    }
    public void setShopId(Integer shopId) {
        this.shopId = shopId;
    }
    public String getTransactionMoney() {
        return transactionMoney;
    }
    public void setTransactionMoney(String transactionMoney) {
        this.transactionMoney = transactionMoney;
    }
    public Integer getArrivalNum() {
        return arrivalNum;
    }
    public void setArrivalNum(Integer arrivalNum) {
        this.arrivalNum = arrivalNum;
    }
    public Integer getTransactionNum() {
        return transactionNum;
    }
    public void setTransactionNum(Integer transactionNum) {
        this.transactionNum = transactionNum;
    }
    @Override
    public String toString() {
        return "CustInfoVo [arrivalNum=" + arrivalNum + ", transactionNum="
                + transactionNum + ", transactionMoney=" + transactionMoney
                + ", shopId=" + shopId + ", time=" + time + ", year=" + year
                + ", month=" + month + "]";
    }
    
    
}