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;
|
}
|
}
|