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.

45 lines
812 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.rehome.zhdcoa.bean;
import java.util.List;
/**
* Create By HuangWenFei
* 创建日期2023-04-18 14:29
* 描述:移动仓库母货架下拉框
*/
public class WarehouseDropdownBean {
private String Total;
private List<RowsBean> Rows;
public String getTotal() {
return Total;
}
public void setTotal(String Total) {
this.Total = Total;
}
public List<RowsBean> getRows() {
return Rows;
}
public void setRows(List<RowsBean> Rows) {
this.Rows = Rows;
}
public static class RowsBean {
//货架编号
private String binnum;
public String getBinnum() {
return binnum;
}
public void setBinnum(String binnum) {
this.binnum = binnum;
}
}
}