skyouc
6 天以前 e046dba174365eb8934ee1e4206f09821145e876
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.zy.asrs.wms.asrs.entity.param;
 
import com.zy.asrs.wms.asrs.entity.LocDetl;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.util.List;
 
/**
 * Created by vincent on 2020/6/13
 */
@Data
@Accessors(chain = true)
@ApiModel(value = "StockOutParam", description = "手动出库参数")
public class StockOutParam {
 
    // 出站口
    @ApiModelProperty("出站口")
    private Integer outSite;
 
    @ApiModelProperty("出库类型: 1.拣货单, 2. 任务档 ")
    private Integer outType;
 
    // 物料编号集合
    @ApiModelProperty("库位明细集合")
    private List<LocDetl> locDetls;
 
}