package com.slcf.pojo;
|
|
/**
|
* 库位排号实体类
|
* @author admin
|
* @date 2018年11月7日
|
*/
|
public class RowNoBean {
|
private Long whs_type; //仓库别
|
|
private String wrk_mk; //当前工作号
|
|
private int current_row; //当前排
|
|
private int s_row; //起始排
|
|
private int e_row; //终止排
|
|
private int crn_qty; //堆垛机数量
|
|
private String memo; //备注
|
|
private String modi_user;
|
|
private String modi_time;
|
|
private Long limint_loc;
|
|
/**
|
* @return the whs_type
|
*/
|
public Long getWhs_type() {
|
return whs_type;
|
}
|
|
/**
|
* @param whs_type the whs_type to set
|
*/
|
public void setWhs_type(Long whs_type) {
|
this.whs_type = whs_type;
|
}
|
|
/**
|
* @return the wrk_mk
|
*/
|
public String getWrk_mk() {
|
return wrk_mk;
|
}
|
|
/**
|
* @param wrk_mk the wrk_mk to set
|
*/
|
public void setWrk_mk(String wrk_mk) {
|
this.wrk_mk = wrk_mk;
|
}
|
|
public int getCurrent_row() {
|
return current_row;
|
}
|
|
public void setCurrent_row(int current_row) {
|
this.current_row = current_row;
|
}
|
|
public int getS_row() {
|
return s_row;
|
}
|
|
public void setS_row(int s_row) {
|
this.s_row = s_row;
|
}
|
|
public int getE_row() {
|
return e_row;
|
}
|
|
public void setE_row(int e_row) {
|
this.e_row = e_row;
|
}
|
|
public int getCrn_qty() {
|
return crn_qty;
|
}
|
|
public void setCrn_qty(int crn_qty) {
|
this.crn_qty = crn_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 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 limint_loc
|
*/
|
public Long getLimint_loc() {
|
return limint_loc;
|
}
|
|
/**
|
* @param limint_loc the limint_loc to set
|
*/
|
public void setLimint_loc(Long limint_loc) {
|
this.limint_loc = limint_loc;
|
}
|
|
}
|