luqingyang
2023-11-01 e80a199894f078f3b0ead5b052ea3ce5d2b9d96e
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package com.consum.base.pojo;
 
public class LWhFormInventoryVo{
    /**
     * 仓库名称
     */
    private String warehouseName;
    /**
     * 物品名称
     */
    private String goodsTemplateName;
    /**
     * 规格型号名称
     */
    private String baseGoodsModelsName;
    /**
     * 类型(出入库类型) 2=盘盈;3=盘亏
     */
    private Integer inventoryResult;
    /**
     * 库存数量
     */
    private Integer initCounts;
    /**
     * 盘点数量
     */
    private Integer inventoryCounts;
    /**
     * 差异数量
     */
    private Integer errorCounts;
    /**
     * 机构名称
     */
    private String agencyName;
    /**
     * 操作人
     */
    private String operatorName;
    /**
     * 结束时间
     */
    private Long stopTime;
 
    public String getWarehouseName() {
        return warehouseName;
    }
 
    public void setWarehouseName(String warehouseName) {
        this.warehouseName = warehouseName;
    }
 
    public String getGoodsTemplateName() {
        return goodsTemplateName;
    }
 
    public void setGoodsTemplateName(String goodsTemplateName) {
        this.goodsTemplateName = goodsTemplateName;
    }
 
    public String getBaseGoodsModelsName() {
        return baseGoodsModelsName;
    }
 
    public void setBaseGoodsModelsName(String baseGoodsModelsName) {
        this.baseGoodsModelsName = baseGoodsModelsName;
    }
 
    public Integer getInventoryResult() {
        return inventoryResult;
    }
 
    public void setInventoryResult(Integer inventoryResult) {
        this.inventoryResult = inventoryResult;
    }
 
    public Integer getInitCounts() {
        return initCounts;
    }
 
    public void setInitCounts(Integer initCounts) {
        this.initCounts = initCounts;
    }
 
    public Integer getInventoryCounts() {
        return inventoryCounts;
    }
 
    public void setInventoryCounts(Integer inventoryCounts) {
        this.inventoryCounts = inventoryCounts;
    }
 
    public Integer getErrorCounts() {
        return errorCounts;
    }
 
    public void setErrorCounts(Integer errorCounts) {
        this.errorCounts = errorCounts;
    }
 
    public String getAgencyName() {
        return agencyName;
    }
 
    public void setAgencyName(String agencyName) {
        this.agencyName = agencyName;
    }
 
    public String getOperatorName() {
        return operatorName;
    }
 
    public void setOperatorName(String operatorName) {
        this.operatorName = operatorName;
    }
 
    public Long getStopTime() {
        return stopTime;
    }
 
    public void setStopTime(Long stopTime) {
        this.stopTime = stopTime;
    }
}