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 + "]";
|
}
|
|
|
}
|