package com.slcf.pojo;
|
|
/**
|
* 库位实体类
|
* @author admin
|
* @date 2018年11月7日
|
*/
|
public class LocationBean {
|
private int whs_type; //仓库别
|
private int plt_type; //容器别
|
private int ctn_type; //产品类型
|
private String loc_no; //库位号
|
private String loc_sts; //库位状态代号
|
private String sheet_no; //单号
|
private int crn_no; //吊车号
|
private int row1; //排号
|
private int bay1; //列号
|
private int lev1; //层号
|
private String full_plt; //满板否
|
private String barcode; //条码号
|
private String modi_user;
|
private String modi_time;
|
private String loc_sts_name; //库位状态名称
|
private int loc_type; //库位别
|
private String loc_sts_old; //原库位状态
|
private String rowName;
|
private String loc_type_desc;
|
|
public int getWhs_type() {
|
return whs_type;
|
}
|
public void setWhs_type(int whs_type) {
|
this.whs_type = whs_type;
|
}
|
public int getPlt_type() {
|
return plt_type;
|
}
|
public void setPlt_type(int plt_type) {
|
this.plt_type = plt_type;
|
}
|
public int getCtn_type() {
|
return ctn_type;
|
}
|
public void setCtn_type(int ctn_type) {
|
this.ctn_type = ctn_type;
|
}
|
/**
|
* @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 loc_sts
|
*/
|
public String getLoc_sts() {
|
return loc_sts;
|
}
|
/**
|
* @param loc_sts the loc_sts to set
|
*/
|
public void setLoc_sts(String loc_sts) {
|
this.loc_sts = loc_sts;
|
}
|
/**
|
* @return the sheet_no
|
*/
|
public String getSheet_no() {
|
return sheet_no;
|
}
|
/**
|
* @param sheet_no the sheet_no to set
|
*/
|
public void setSheet_no(String sheet_no) {
|
this.sheet_no = sheet_no;
|
}
|
/**
|
* @return the crn_no
|
*/
|
public int getCrn_no() {
|
return crn_no;
|
}
|
/**
|
* @param crn_no the crn_no to set
|
*/
|
public void setCrn_no(int crn_no) {
|
this.crn_no = crn_no;
|
}
|
/**
|
* @return the row1
|
*/
|
public int getRow1() {
|
return row1;
|
}
|
/**
|
* @param row1 the row1 to set
|
*/
|
public void setRow1(int row1) {
|
this.row1 = row1;
|
}
|
/**
|
* @return the bay1
|
*/
|
public int getBay1() {
|
return bay1;
|
}
|
/**
|
* @param bay1 the bay1 to set
|
*/
|
public void setBay1(int bay1) {
|
this.bay1 = bay1;
|
}
|
/**
|
* @return the lev1
|
*/
|
public int getLev1() {
|
return lev1;
|
}
|
/**
|
* @param lev1 the lev1 to set
|
*/
|
public void setLev1(int lev1) {
|
this.lev1 = lev1;
|
}
|
/**
|
* @return the full_plt
|
*/
|
public String getFull_plt() {
|
return full_plt;
|
}
|
/**
|
* @param full_plt the full_plt to set
|
*/
|
public void setFull_plt(String full_plt) {
|
this.full_plt = full_plt;
|
}
|
/**
|
* @return the barcode
|
*/
|
public String getBarcode() {
|
return barcode;
|
}
|
/**
|
* @param barcode the barcode to set
|
*/
|
public void setBarcode(String barcode) {
|
this.barcode = barcode;
|
}
|
/**
|
* @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;
|
}
|
/**
|
* @return the loc_sts_name
|
*/
|
public String getLoc_sts_name() {
|
return loc_sts_name;
|
}
|
/**
|
* @param loc_sts_name the loc_sts_name to set
|
*/
|
public void setLoc_sts_name(String loc_sts_name) {
|
this.loc_sts_name = loc_sts_name;
|
}
|
/**
|
* @return the loc_type
|
*/
|
public int getLoc_type() {
|
return loc_type;
|
}
|
/**
|
* @param loc_type the loc_type to set
|
*/
|
public void setLoc_type(int loc_type) {
|
this.loc_type = loc_type;
|
}
|
public String getLoc_sts_old() {
|
return loc_sts_old;
|
}
|
public void setLoc_sts_old(String loc_sts_old) {
|
this.loc_sts_old = loc_sts_old;
|
}
|
public String getRowName() {
|
return rowName;
|
}
|
public void setRowName(String rowName) {
|
this.rowName = rowName;
|
}
|
public String getLoc_type_desc() {
|
return loc_type_desc;
|
}
|
public void setLoc_type_desc(String loc_type_desc) {
|
this.loc_type_desc = loc_type_desc;
|
}
|
|
}
|