自动化立体仓库 - WMS系统
chen.llin
2025-12-24 46b422214d5d422be5dfa0df57560cda678058c9
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
package com.zy.asrs.entity.param;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 月结查询参数
 */
@Data
public class MonthlySettleQueryParam {
    
    /**
     * 当前页
     */
    @ApiModelProperty(value = "当前页")
    private Integer curr = 1;
    
    /**
     * 每页数量
     */
    @ApiModelProperty(value = "每页数量")
    private Integer limit = 10;
    
    /**
     * 月结编号
     */
    @ApiModelProperty(value = "月结编号")
    private String settleNo;
    
    /**
     * 状态
     */
    @ApiModelProperty(value = "状态")
    private Integer status;
    
    /**
     * 起始日期
     */
    @ApiModelProperty(value = "起始日期")
    private String startDate;
    
    /**
     * 结束日期
     */
    @ApiModelProperty(value = "结束日期")
    private String endDate;
}