package com.matrix.system.hive.statistics; 
 | 
  
 | 
import com.matrix.core.anotations.Extend; 
 | 
import com.matrix.core.tools.DateUtil; 
 | 
import org.springframework.format.annotation.DateTimeFormat; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * 数据展示对象 
 | 
 */ 
 | 
public class BusinessDataShowVo { 
 | 
  
 | 
    private String shopId; 
 | 
    private String shopName; 
 | 
    private String time; 
 | 
    private String cashPay; 
 | 
    private String cardPay; 
 | 
    private String arrearsPay; 
 | 
    private String freeConsumePay; 
 | 
    private String consumePay; 
 | 
    private String refundCashPay; 
 | 
    private String refundCardPay; 
 | 
  
 | 
    /** 
 | 
     * 查询条件 
 | 
     */ 
 | 
    @Extend 
 | 
    @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD) 
 | 
  
 | 
    private Date beginTime; 
 | 
  
 | 
    @Extend 
 | 
    @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD) 
 | 
    private Date endTime; 
 | 
  
 | 
    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 String getShopId() { 
 | 
        return shopId; 
 | 
    } 
 | 
  
 | 
    public void setShopId(String shopId) { 
 | 
        this.shopId = shopId; 
 | 
    } 
 | 
  
 | 
    public String getShopName() { 
 | 
        return shopName; 
 | 
    } 
 | 
  
 | 
    public void setShopName(String shopName) { 
 | 
        this.shopName = shopName; 
 | 
    } 
 | 
  
 | 
    public String getTime() { 
 | 
        return time; 
 | 
    } 
 | 
  
 | 
    public void setTime(String time) { 
 | 
        this.time = time; 
 | 
    } 
 | 
  
 | 
    public String getCashPay() { 
 | 
        return cashPay; 
 | 
    } 
 | 
  
 | 
    public void setCashPay(String cashPay) { 
 | 
        this.cashPay = cashPay; 
 | 
    } 
 | 
  
 | 
    public String getCardPay() { 
 | 
        return cardPay; 
 | 
    } 
 | 
  
 | 
    public void setCardPay(String cardPay) { 
 | 
        this.cardPay = cardPay; 
 | 
    } 
 | 
  
 | 
    public String getArrearsPay() { 
 | 
        return arrearsPay; 
 | 
    } 
 | 
  
 | 
    public void setArrearsPay(String arrearsPay) { 
 | 
        this.arrearsPay = arrearsPay; 
 | 
    } 
 | 
  
 | 
    public String getFreeConsumePay() { 
 | 
        return freeConsumePay; 
 | 
    } 
 | 
  
 | 
    public void setFreeConsumePay(String freeConsumePay) { 
 | 
        this.freeConsumePay = freeConsumePay; 
 | 
    } 
 | 
  
 | 
    public String getConsumePay() { 
 | 
        return consumePay; 
 | 
    } 
 | 
  
 | 
    public void setConsumePay(String consumePay) { 
 | 
        this.consumePay = consumePay; 
 | 
    } 
 | 
  
 | 
    public String getRefundCashPay() { 
 | 
        return refundCashPay; 
 | 
    } 
 | 
  
 | 
    public void setRefundCashPay(String refundCashPay) { 
 | 
        this.refundCashPay = refundCashPay; 
 | 
    } 
 | 
  
 | 
    public String getRefundCardPay() { 
 | 
        return refundCardPay; 
 | 
    } 
 | 
  
 | 
    public void setRefundCardPay(String refundCardPay) { 
 | 
        this.refundCardPay = refundCardPay; 
 | 
    } 
 | 
} 
 |