自动化立体仓库 - WMS系统
skyouc
9 天以前 34aa40fffdda9155e77a7991ca8c7691102bb0b8
src/main/java/com/zy/asrs/entity/ViewInOutBean.java
@@ -7,14 +7,14 @@
 */
public class ViewInOutBean {
   private String ymd;
    private String source_sta_no;
    private Long sto_qty;
    private Long ret_qty;
    private Long total_qty;
    private String sourceStaNo;
    private Long stoQty;
    private Long retQty;
    private Long totalQty;
    private int pageNumber;
    private int pageSize;
    private String begin_date; //查询开始日期
    private String end_date;   //查询截止日期
    private String beginDate; //查询开始日期
    private String endDate;   //查询截止日期
    
   public String getYmd() {
      return ymd;
@@ -23,28 +23,28 @@
      this.ymd = ymd;
   }
   public String getSource_sta_no() {
      return source_sta_no;
        return sourceStaNo;
   }
   public void setSource_sta_no(String source_sta_no) {
      this.source_sta_no = source_sta_no;
        this.sourceStaNo = source_sta_no;
   }
   public Long getSto_qty() {
      return sto_qty;
        return stoQty;
   }
   public void setSto_qty(Long sto_qty) {
      this.sto_qty = sto_qty;
        this.stoQty = sto_qty;
   }
   public Long getRet_qty() {
      return ret_qty;
        return retQty;
   }
   public void setRet_qty(Long ret_qty) {
      this.ret_qty = ret_qty;
        this.retQty = ret_qty;
   }
   public Long getTotal_qty() {
      return total_qty;
        return totalQty;
   }
   public void setTotal_qty(Long total_qty) {
      this.total_qty = total_qty;
        this.totalQty = total_qty;
   }
   public int getPageNumber() {
      return pageNumber;
@@ -59,15 +59,15 @@
      this.pageSize = pageSize;
   }
   public String getBegin_date() {
      return begin_date;
        return beginDate;
   }
   public void setBegin_date(String begin_date) {
      this.begin_date = begin_date;
        this.beginDate = begin_date;
   }
   public String getEnd_date() {
      return end_date;
        return endDate;
   }
   public void setEnd_date(String end_date) {
      this.end_date = end_date;
        this.endDate = end_date;
   }
}