package com.zy.common.model; 
 | 
  
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.ArrayList; 
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * Created by vincent on 2022/4/21 
 | 
 */ 
 | 
@Data 
 | 
public class MesPakinParam { 
 | 
  
 | 
    // 入库时间 
 | 
    private String pakinTime; 
 | 
  
 | 
    // 来源地 - 写死 
 | 
    private String lgortFrom; 
 | 
  
 | 
    // 目的地 - 写死 
 | 
    private String lgortTo; 
 | 
  
 | 
    private List<Detl> list = new ArrayList<>(); 
 | 
  
 | 
    @Data 
 | 
    public static class Detl { 
 | 
  
 | 
        // 物料条码 
 | 
        private String barcode; 
 | 
  
 | 
        // 数量 
 | 
        private Double anfme; 
 | 
  
 | 
        public Detl() { 
 | 
        } 
 | 
  
 | 
        public Detl(String barcode, Double anfme) { 
 | 
            this.barcode = barcode; 
 | 
            this.anfme = anfme; 
 | 
        } 
 | 
    } 
 | 
  
 | 
} 
 |