skyouc
2025-09-09 85f15182f6a6d97ad86739967e59e80299e1b98f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.zy.asrs.wms.asrs.entity.param;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
 
@Data
@Accessors(chain = true)
@ApiModel(value = "CheckOutParam", description = "盘点出库参数")
public class CheckOutParam {
 
    @ApiModelProperty("出站口")
    private Integer outSite;
 
    @ApiModelProperty("出库类型: 1.拣货单, 2. 任务档 ")
    private Integer outType;
 
    @ApiModelProperty("库位ID")
    private Long id;
}