package com.zy.asrs.entity.param; import java.util.List; /** * Created by vincent on 2020/6/18 */ public class LocDetlAdjustParam { //托盘号 private String zpallet; // 库位号 private String locNo; // 调整库存明细集合 private List list; public String getZpallet() { return zpallet; } public void setZpallet(String zpallet) { this.zpallet = zpallet; } public static class LocDetlAdjust { // 产品号 private String matNo; // 变更数量 private Double count; public String getMatNo() { return matNo; } public void setMatNo(String matNo) { this.matNo = matNo; } public Double getCount() { return count; } public void setCount(Double count) { this.count = count; } } public String getLocNo() { return locNo; } public void setLocNo(String locNo) { this.locNo = locNo; } public List getList() { return list; } public void setList(List list) { this.list = list; } }