#
Junjie
2024-08-08 faa10625350a681f7720733724081b76f34ccd4a
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.zy.asrs.wms.asrs.entity.param;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class CreateSuggestLocRuleParam {
 
    /**
     * 商品
     */
    @ApiModelProperty(value= "商品")
    private List<Long> matIdList;
 
    /**
     * 批号
     */
    @ApiModelProperty(value= "批号")
    private String batch;
 
    /**
     * 起始排
     */
    @ApiModelProperty(value= "起始排")
    private Integer startRow;
 
    /**
     * 结束排
     */
    @ApiModelProperty(value= "结束排")
    private Integer targetRow;
 
    /**
     * 起始列
     */
    @ApiModelProperty(value= "起始列")
    private Integer startBay;
 
    /**
     * 结束列
     */
    @ApiModelProperty(value= "结束列")
    private Integer targetBay;
 
    /**
     * 起始层
     */
    @ApiModelProperty(value= "起始层")
    private Integer startLev;
 
    /**
     * 结束层
     */
    @ApiModelProperty(value= "结束层")
    private Integer targetLev;
 
}