You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
570 B
Java
31 lines
570 B
Java
package com.rehome.zhdcoa.bean;
|
|
|
|
import java.util.List;
|
|
|
|
public class OneLevelShelvesBean extends DagerEnterApplyBaseBean{
|
|
private List<RowsBean> Datas;
|
|
|
|
public List<RowsBean> getDatas() {
|
|
return Datas;
|
|
}
|
|
|
|
public void setDatas(List<RowsBean> datas) {
|
|
Datas = datas;
|
|
}
|
|
|
|
public static class RowsBean {
|
|
|
|
//母货架号
|
|
private String BINNUM;
|
|
|
|
|
|
public String getBINNUM() {
|
|
return BINNUM;
|
|
}
|
|
|
|
public void setBINNUM(String BINNUM) {
|
|
this.BINNUM = BINNUM;
|
|
}
|
|
}
|
|
}
|