admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
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
package com.yeshi.fanli.vo.order;
 
import java.math.BigDecimal;
 
/**
 * 渠道数据统计
 * 
 * @author Administrator
 *
 */
public class ChannelDataStatisticVO {
    private String date;// 日期
    private BigDecimal estimate;// 佣金
    private BigDecimal payMoney;// 支付金额
    private int userCount;// 新增用户数量
    private int orderCount;// 订单数量
 
    public String getDate() {
        return date;
    }
 
    public void setDate(String date) {
        this.date = date;
    }
 
    public BigDecimal getEstimate() {
        return estimate;
    }
 
    public void setEstimate(BigDecimal estimate) {
        this.estimate = estimate;
    }
 
    public BigDecimal getPayMoney() {
        return payMoney;
    }
 
    public void setPayMoney(BigDecimal payMoney) {
        this.payMoney = payMoney;
    }
 
    public int getUserCount() {
        return userCount;
    }
 
    public void setUserCount(int userCount) {
        this.userCount = userCount;
    }
 
    public int getOrderCount() {
        return orderCount;
    }
 
    public void setOrderCount(int orderCount) {
        this.orderCount = orderCount;
    }
}