package com.slcf.bean;
|
|
/**
|
* 库存调整查询传参bean
|
* @author admin
|
* @date 2018年11月15日
|
*/
|
public class AdjDetailCondition {
|
private String loc_no; //库位号
|
private String mat_no; //物料编码
|
private int s_ctns; //箱数
|
private int s_qty; //数量
|
private double s_wt; //重量
|
private int adj_ctns; //箱数
|
private int adj_qty; //数量
|
private double adj_wt; //重量
|
private int ctns; //箱数
|
private int qty; //数量
|
private double wt; //重量
|
private String memo; //备注
|
|
private String mat_name; //物料名称
|
private int pageNumber;
|
private int pageSize;
|
|
/**
|
* @return the loc_no
|
*/
|
public String getLoc_no() {
|
return loc_no;
|
}
|
/**
|
* @param loc_no the loc_no to set
|
*/
|
public void setLoc_no(String loc_no) {
|
this.loc_no = loc_no;
|
}
|
/**
|
* @return the mat_no
|
*/
|
public String getMat_no() {
|
return mat_no;
|
}
|
/**
|
* @param mat_no the mat_no to set
|
*/
|
public void setMat_no(String mat_no) {
|
this.mat_no = mat_no;
|
}
|
|
public int getS_ctns() {
|
return s_ctns;
|
}
|
public void setS_ctns(int s_ctns) {
|
this.s_ctns = s_ctns;
|
}
|
public int getS_qty() {
|
return s_qty;
|
}
|
public void setS_qty(int s_qty) {
|
this.s_qty = s_qty;
|
}
|
public void setAdj_ctns(int adj_ctns) {
|
this.adj_ctns = adj_ctns;
|
}
|
public void setAdj_qty(int adj_qty) {
|
this.adj_qty = adj_qty;
|
}
|
public void setCtns(int ctns) {
|
this.ctns = ctns;
|
}
|
public void setQty(int qty) {
|
this.qty = qty;
|
}
|
/**
|
* @return the s_wt
|
*/
|
public double getS_wt() {
|
return s_wt;
|
}
|
/**
|
* @param s_wt the s_wt to set
|
*/
|
public void setS_wt(double s_wt) {
|
this.s_wt = s_wt;
|
}
|
/**
|
* @return the adj_wt
|
*/
|
public double getAdj_wt() {
|
return adj_wt;
|
}
|
/**
|
* @param adj_wt the adj_wt to set
|
*/
|
public void setAdj_wt(double adj_wt) {
|
this.adj_wt = adj_wt;
|
}
|
/**
|
* @return the wt
|
*/
|
public double getWt() {
|
return wt;
|
}
|
/**
|
* @param wt the wt to set
|
*/
|
public void setWt(double wt) {
|
this.wt = wt;
|
}
|
|
public int getAdj_ctns() {
|
return adj_ctns;
|
}
|
public int getAdj_qty() {
|
return adj_qty;
|
}
|
public int getCtns() {
|
return ctns;
|
}
|
public int getQty() {
|
return qty;
|
}
|
/**
|
* @return the memo
|
*/
|
public String getMemo() {
|
return memo;
|
}
|
/**
|
* @param memo the memo to set
|
*/
|
public void setMemo(String memo) {
|
this.memo = memo;
|
}
|
/**
|
* @return the mat_name
|
*/
|
public String getMat_name() {
|
return mat_name;
|
}
|
/**
|
* @param mat_name the mat_name to set
|
*/
|
public void setMat_name(String mat_name) {
|
this.mat_name = mat_name;
|
}
|
/**
|
* @return the pageNumber
|
*/
|
public int getPageNumber() {
|
return pageNumber;
|
}
|
/**
|
* @param pageNumber the pageNumber to set
|
*/
|
public void setPageNumber(int pageNumber) {
|
this.pageNumber = pageNumber;
|
}
|
/**
|
* @return the pageSize
|
*/
|
public int getPageSize() {
|
return pageSize;
|
}
|
/**
|
* @param pageSize the pageSize to set
|
*/
|
public void setPageSize(int pageSize) {
|
this.pageSize = pageSize;
|
}
|
}
|