package com.slcf.pojo;
|
|
/**
|
* 库存调整实体类
|
* @author admin
|
* @date 2018年11月15日
|
*/
|
public class AdjDetailBean {
|
private Long adj_id;
|
private String loc_no; //库位号
|
private String mat_no; //物料编码
|
private String mat_name; //物料编码
|
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 modi_user;
|
private String modi_time;
|
private int pageNumber;
|
private int pageSize;
|
private String begin_date; //查询开始日期
|
private String end_date; //查询截止日期
|
|
public Long getAdj_id() {
|
return adj_id;
|
}
|
public void setAdj_id(Long adj_id) {
|
this.adj_id = adj_id;
|
}
|
/**
|
* @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 String getMat_name() {
|
return mat_name;
|
}
|
public void setMat_name(String mat_name) {
|
this.mat_name = mat_name;
|
}
|
|
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;
|
}
|
/**
|
* @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;
|
}
|
|
public int getAdj_ctns() {
|
return adj_ctns;
|
}
|
public void setAdj_ctns(int adj_ctns) {
|
this.adj_ctns = adj_ctns;
|
}
|
public int getAdj_qty() {
|
return adj_qty;
|
}
|
public void setAdj_qty(int adj_qty) {
|
this.adj_qty = adj_qty;
|
}
|
/**
|
* @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;
|
}
|
public int getCtns() {
|
return ctns;
|
}
|
public void setCtns(int ctns) {
|
this.ctns = ctns;
|
}
|
public int getQty() {
|
return qty;
|
}
|
public void setQty(int qty) {
|
this.qty = qty;
|
}
|
/**
|
* @return the wt
|
*/
|
public double getWt() {
|
return wt;
|
}
|
/**
|
* @param wt the wt to set
|
*/
|
public void setWt(double wt) {
|
this.wt = wt;
|
}
|
/**
|
* @return the memo
|
*/
|
public String getMemo() {
|
return memo;
|
}
|
/**
|
* @param memo the memo to set
|
*/
|
public void setMemo(String memo) {
|
this.memo = memo;
|
}
|
/**
|
* @return the modi_user
|
*/
|
public String getModi_user() {
|
return modi_user;
|
}
|
/**
|
* @param modi_user the modi_user to set
|
*/
|
public void setModi_user(String modi_user) {
|
this.modi_user = modi_user;
|
}
|
/**
|
* @return the modi_time
|
*/
|
public String getModi_time() {
|
return modi_time;
|
}
|
/**
|
* @param modi_time the modi_time to set
|
*/
|
public void setModi_time(String modi_time) {
|
this.modi_time = modi_time;
|
}
|
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 begin_date;
|
}
|
public void setBegin_date(String begin_date) {
|
this.begin_date = begin_date;
|
}
|
public String getEnd_date() {
|
return end_date;
|
}
|
public void setEnd_date(String end_date) {
|
this.end_date = end_date;
|
}
|
}
|