package com.matrix.system.shopXcx.pojo; 
 | 
  
 | 
public class ApplyOrderQueryPOJO { 
 | 
  
 | 
    private Long comId; 
 | 
  
 | 
    private String startTime; 
 | 
  
 | 
    private String endTime; 
 | 
  
 | 
    private String applyStatus; 
 | 
  
 | 
    private String applyNo; 
 | 
  
 | 
    private String shopName; 
 | 
  
 | 
    private Long shopId; 
 | 
  
 | 
    public Long getShopId() { 
 | 
        return shopId; 
 | 
    } 
 | 
  
 | 
    public void setShopId(Long shopId) { 
 | 
        this.shopId = shopId; 
 | 
    } 
 | 
  
 | 
    public String getStartTime() { 
 | 
        return startTime; 
 | 
    } 
 | 
  
 | 
    public void setStartTime(String startTime) { 
 | 
        this.startTime = startTime; 
 | 
    } 
 | 
  
 | 
    public String getEndTime() { 
 | 
        return endTime; 
 | 
    } 
 | 
  
 | 
    public void setEndTime(String endTime) { 
 | 
        this.endTime = endTime; 
 | 
    } 
 | 
  
 | 
    public String getApplyStatus() { 
 | 
        return applyStatus; 
 | 
    } 
 | 
  
 | 
    public void setApplyStatus(String applyStatus) { 
 | 
        this.applyStatus = applyStatus; 
 | 
    } 
 | 
  
 | 
    public String getApplyNo() { 
 | 
        return applyNo; 
 | 
    } 
 | 
  
 | 
    public void setApplyNo(String applyNo) { 
 | 
        this.applyNo = applyNo; 
 | 
    } 
 | 
  
 | 
    public Long getComId() { 
 | 
        return comId; 
 | 
    } 
 | 
  
 | 
    public void setComId(Long comId) { 
 | 
        this.comId = comId; 
 | 
    } 
 | 
  
 | 
    public String getShopName() { 
 | 
        return shopName; 
 | 
    } 
 | 
  
 | 
    public void setShopName(String shopName) { 
 | 
        this.shopName = shopName; 
 | 
    } 
 | 
} 
 |