package com.zy.asrs.entity.param; import java.util.List; /** * Created by vincent on 2020/6/11 */ public class FullStoreParam { // 站点编号 private Integer devpNo; // 物料列表数据 private List list; public static class MatCodeStore { // 物料编号 private String matNo; // 物料数量 private Integer count; public String getMatNo() { return matNo; } public void setMatNo(String matNo) { this.matNo = matNo; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } } public Integer getDevpNo() { return devpNo; } public void setDevpNo(Integer devpNo) { this.devpNo = devpNo; } public List getList() { return list; } public void setList(List list) { this.list = list; } }