package com.zy.asrs.entity.param; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * Created by vincent on 2020/6/18 
 | 
 */ 
 | 
public class LocDetlAdjustParam { 
 | 
  
 | 
    // 库位号 
 | 
    private String locNo; 
 | 
  
 | 
    // 调整库存明细集合 
 | 
    private List<LocDetlAdjust> list; 
 | 
  
 | 
    public static class LocDetlAdjust { 
 | 
  
 | 
        // 物料号 
 | 
        private String matnr; 
 | 
  
 | 
        // 变更数量 
 | 
        private Double count; 
 | 
  
 | 
        public String getMatnr() { 
 | 
            return matnr; 
 | 
        } 
 | 
  
 | 
        public void setMatnr(String matnr) { 
 | 
            this.matnr = matnr; 
 | 
        } 
 | 
  
 | 
        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<LocDetlAdjust> getList() { 
 | 
        return list; 
 | 
    } 
 | 
  
 | 
    public void setList(List<LocDetlAdjust> list) { 
 | 
        this.list = list; 
 | 
    } 
 | 
  
 | 
} 
 |