skyouc
2025-09-09 ccfbcdf2a2ee13a7575bb7bbd0cbf5311df2827b
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;
}