package com.slcf.bean; /** * 库位初始化传参bean * @author admin * @date 2018年11月7日 */ public class LocationEntity { private int s_row; private int e_row; private int s_bay; private int e_bay; private int s_lev; private int e_lev; private int loc_type; private int whs_type; /** * @return the s_row */ public int getS_row() { return s_row; } /** * @param s_row the s_row to set */ public void setS_row(int s_row) { this.s_row = s_row; } /** * @return the e_row */ public int getE_row() { return e_row; } /** * @param e_row the e_row to set */ public void setE_row(int e_row) { this.e_row = e_row; } /** * @return the s_bay */ public int getS_bay() { return s_bay; } /** * @param s_bay the s_bay to set */ public void setS_bay(int s_bay) { this.s_bay = s_bay; } /** * @return the e_bay */ public int getE_bay() { return e_bay; } /** * @param e_bay the e_bay to set */ public void setE_bay(int e_bay) { this.e_bay = e_bay; } /** * @return the s_lev */ public int getS_lev() { return s_lev; } /** * @param s_lev the s_lev to set */ public void setS_lev(int s_lev) { this.s_lev = s_lev; } /** * @return the e_lev */ public int getE_lev() { return e_lev; } /** * @param e_lev the e_lev to set */ public void setE_lev(int e_lev) { this.e_lev = e_lev; } /** * @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 int getWhs_type() { return whs_type; } public void setWhs_type(int whs_type) { this.whs_type = whs_type; } }