package com.zy.asrs.entity; import io.swagger.models.auth.In; import lombok.Data; import java.util.List; @Data public class ToWmsDTO { private String warehouseId; private String containerCode; private String applyType; private String wharfSource; private Integer taskTunnel; private List canInboundTunnels; // 容器编码 private String barCode; private String barcode; //容器类型 private String ioType; //入库站编号 private Integer stationCode; //库位类型 private Integer locType; private Integer status;//空满版 private Double grossWt; private Double weight; // public ToWmsDTO(String barcode, Integer stationCode, Integer locType){ // this.barcode = barcode; // this.stationCode = stationCode; // this.locType = locType; // } public ToWmsDTO(String barcode, Integer stationCode, Integer status){ this.barcode = barcode; this.barCode = barcode; this.stationCode = stationCode; this.status = status; } public ToWmsDTO(Integer stationCode, Double grossWt, String barcode, Integer status) { this.stationCode = stationCode; this.weight = grossWt; this.grossWt = grossWt; this.barcode = barcode; this.barCode = barcode; this.status = status; } public ToWmsDTO(){ } }