package com.zy.asrs.entity; /** * 日出入库次数统计 * @author admin * @date 2018年11月24日 */ public class ViewInOutBean { private String ymd; private String sourceStaNo; private Long stoQty; private Long retQty; private Long totalQty; private int pageNumber; private int pageSize; private String beginDate; //查询开始日期 private String endDate; //查询截止日期 public String getYmd() { return ymd; } public void setYmd(String ymd) { this.ymd = ymd; } public String getSource_sta_no() { return sourceStaNo; } public void setSource_sta_no(String source_sta_no) { this.sourceStaNo = source_sta_no; } public Long getSto_qty() { return stoQty; } public void setSto_qty(Long sto_qty) { this.stoQty = sto_qty; } public Long getRet_qty() { return retQty; } public void setRet_qty(Long ret_qty) { this.retQty = ret_qty; } public Long getTotal_qty() { return totalQty; } public void setTotal_qty(Long total_qty) { this.totalQty = total_qty; } public int getPageNumber() { return pageNumber; } public void setPageNumber(int pageNumber) { this.pageNumber = pageNumber; } public int getPageSize() { return pageSize; } public void setPageSize(int pageSize) { this.pageSize = pageSize; } public String getBegin_date() { return beginDate; } public void setBegin_date(String begin_date) { this.beginDate = begin_date; } public String getEnd_date() { return endDate; } public void setEnd_date(String end_date) { this.endDate = end_date; } }