| | |
| | | package com.zy.asrs.entity.param; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * Created by vincent on 2020/6/13 |
| | | */ |
| | | @Data |
| | | public class StockOutParam { |
| | | |
| | | // 出站口 |
| | |
| | | // 物料编号集合 |
| | | private List<LocDetl> locDetls; |
| | | |
| | | public Integer getOutSite() { |
| | | return outSite; |
| | | } |
| | | |
| | | public void setOutSite(Integer outSite) { |
| | | this.outSite = outSite; |
| | | } |
| | | |
| | | public List<LocDetl> getLocDetls() { |
| | | return locDetls; |
| | | } |
| | | |
| | | public void setLocDetls(List<LocDetl> locDetls) { |
| | | this.locDetls = locDetls; |
| | | } |
| | | |
| | | @Data |
| | | public static class LocDetl { |
| | | |
| | | // 库位号 |
| | |
| | | // 商品编号 |
| | | private String matnr; |
| | | |
| | | // 序列码 |
| | | private String batch; |
| | | |
| | | // 数量 |
| | | private Double count; |
| | | |
| | | public String getLocNo() { |
| | | return locNo; |
| | | } |
| | | private String brand; |
| | | |
| | | public void setLocNo(String locNo) { |
| | | this.locNo = locNo; |
| | | } |
| | | /** |
| | | * 备用1 |
| | | */ |
| | | @ApiModelProperty(value= "备用1") |
| | | private String standby1 = ""; |
| | | |
| | | public String getMatnr() { |
| | | return matnr; |
| | | } |
| | | /** |
| | | * 备用2 |
| | | */ |
| | | @ApiModelProperty(value= "备用2") |
| | | private String standby2 = ""; |
| | | |
| | | public void setMatnr(String matnr) { |
| | | this.matnr = matnr; |
| | | } |
| | | /** |
| | | * 备用3 |
| | | */ |
| | | @ApiModelProperty(value= "备用3") |
| | | private String standby3 = ""; |
| | | |
| | | public Double getCount() { |
| | | return count; |
| | | } |
| | | /** |
| | | * 备用1 |
| | | */ |
| | | @ApiModelProperty(value= "备用1") |
| | | @TableField("box_type1") |
| | | private String boxType1 = "1"; |
| | | |
| | | public void setCount(Double count) { |
| | | this.count = count; |
| | | } |
| | | /** |
| | | * 备用2 |
| | | */ |
| | | @ApiModelProperty(value= "备用2") |
| | | @TableField("box_type2") |
| | | private String boxType2 = "1"; |
| | | |
| | | /** |
| | | * 备用3 |
| | | */ |
| | | @ApiModelProperty(value= "备用3") |
| | | @TableField("box_type3") |
| | | private String boxType3 = "1"; |
| | | |
| | | } |
| | | |
| | | } |