futian.liu
2023-11-21 826f7359225f036663075546f50ea1126db568d3
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.consum.base.pojo;
 
import com.walker.web.param.ParamRequest;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(value = "盘点单条件参数")
public class LWhFormInventoryParam extends ParamRequest {
 
    private Long id;
    /**
     * 盘点单号
     */
    private String businessFormCode;
    /**
     * 盘点单名
     */
    private String businessFormName;
    /**
     * 仓库编号
     */
    private Long warehouseId;
    /**
     * 操作人
     */
    private Long operatorUserId;
    /**
     * 监盘人
     */
    private Long monitorUserId;
 
    /**
     * 盘点时间 开始
     */
    private Long startTime;
    /**
     * 盘点时间 结束
     */
    private Long endTime;
    /**
     * 机构id
     */
    private Long agencyId;
    /**
     * 物品名称
     */
    private String goodsTemplateName;
    /**
     * 规格型号id
     */
    private Long baseGoodsModelsId;
    /**
     * 类型(出入库类型) 2=盘盈;3=盘亏
     */
    private Integer inventoryResult;
    /**
     * 出入库单号
     */
    private Long warehouseFormCode;
    /**
     * 盘点人
     */
    private String operatorName;
    /**
     * 时间(盘点结束时间) 开始
     */
    private Long stopTimeStart;
    /**
     * 时间(盘点结束时间) 结束
     */
    private Long stopTimeEnd;
 
    private Integer pageSize = 10;
    private Integer pageNum = 1;
 
 
}