package com.matrix.system.hiveErp.analysUtil; 
 | 
  
 | 
/** 
 | 
 * 统计查询条件 
 | 
 * @author jyy 
 | 
 */ 
 | 
public class StatisticsParamVo { 
 | 
  
 | 
    /** 
 | 
     * 开始时间 
 | 
     */ 
 | 
    private String beginTime; 
 | 
  
 | 
    /** 
 | 
     *结束时间 
 | 
     */ 
 | 
    private String endTime; 
 | 
    /** 
 | 
     *统计单位 
 | 
     */ 
 | 
    private String statisticsUnit; 
 | 
  
 | 
    /** 
 | 
     *对比单位 
 | 
     */ 
 | 
    private String  contrastUnit; 
 | 
    /** 
 | 
     * 门店id 
 | 
     */ 
 | 
    private String shopId; 
 | 
  
 | 
    public String getBeginTime() { 
 | 
        return beginTime; 
 | 
    } 
 | 
  
 | 
    public void setBeginTime(String beginTime) { 
 | 
        this.beginTime = beginTime; 
 | 
    } 
 | 
  
 | 
    public String getEndTime() { 
 | 
        return endTime; 
 | 
    } 
 | 
  
 | 
    public void setEndTime(String endTime) { 
 | 
        this.endTime = endTime; 
 | 
    } 
 | 
  
 | 
    public String getStatisticsUnit() { 
 | 
        return statisticsUnit; 
 | 
    } 
 | 
  
 | 
    public void setStatisticsUnit(String statisticsUnit) { 
 | 
        this.statisticsUnit = statisticsUnit; 
 | 
    } 
 | 
  
 | 
    public String getContrastUnit() { 
 | 
        return contrastUnit; 
 | 
    } 
 | 
  
 | 
    public void setContrastUnit(String contrastUnit) { 
 | 
        this.contrastUnit = contrastUnit; 
 | 
    } 
 | 
  
 | 
    public String getShopId() { 
 | 
        return shopId; 
 | 
    } 
 | 
  
 | 
    public void setShopId(String shopId) { 
 | 
        this.shopId = shopId; 
 | 
    } 
 | 
} 
 |