package com.matrix.system.hive.pojo;
|
|
import java.util.Date;
|
|
import com.matrix.system.hive.plugin.util.DateUtils;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
/**
|
*
|
* 统计用查询对象
|
* @author 姜友瑶
|
* @time 2016-08-02
|
*/
|
public class StatisticsVo {
|
|
/**
|
* 开始时间
|
*/
|
@DateTimeFormat(pattern = DateUtils.DATE_FORMAT_MM)
|
private Date beginTime;
|
|
/**
|
* 结束时间
|
*/
|
@DateTimeFormat(pattern = DateUtils.DATE_FORMAT_MM)
|
private Date endTime;
|
|
/**
|
* 店铺id
|
*/
|
private Long shopId;
|
|
public Date getBeginTime() {
|
return beginTime;
|
}
|
|
public void setBeginTime(Date beginTime) {
|
this.beginTime = beginTime;
|
}
|
|
public Date getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(Date endTime) {
|
this.endTime = endTime;
|
}
|
|
public Long getShopId() {
|
return shopId;
|
}
|
|
public void setShopId(Long shopId) {
|
this.shopId = shopId;
|
}
|
|
|
}
|