sgj
2026-02-26 abf0b44fe291299f8440b84cc185a1205ece7096
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
package com.fzzy.igds.data;
 
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 监管库存报表数据
 *
 * @author sgj
 * @date 2025/12/19
 */
@Data
public class SuperInventoryReportData implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 收储公司
     */
    private String customerId;
 
    @Excel(name = "收储公司", sort = 1)
    private String customerName;
 
    /**
     * 所属库区
     */
    private String deptId;
 
    @Excel(name = "所属库区", sort = 2)
    private String deptName;
 
    /**
     * 所属仓库
     */
    private String depotId;
 
    @Excel(name = "所属仓库", sort = 3)
    private String depotName;
 
 
    /**
     * 期初数量(单位KG)
     */
    @Excel(name = "期初数量(单位KG)", sort = 4)
    private Double initialWeight = 0.0;
 
    /**
     * 入库数量(单位KG)
     */
    @Excel(name = "入库数量(单位KG)", sort = 5)
    private Double recordInWeight = 0.0;
 
    /**
     * 倒入数量(单位KG)
     */
    @Excel(name = "倒入数量(单位KG)", sort = 6)
    private Double changeInWeight = 0.0;
 
    /**
     * 出库数量(单位KG)
     */
    @Excel(name = "出库数量(单位KG)", sort = 7)
    private Double recordOutWeight = 0.0;
 
    /**
     * 倒出数量(单位KG)
     */
    @Excel(name = "倒出数量(单位KG)", sort = 8)
    private Double changeOutWeight = 0.0;
 
    /**
     * 损耗数量(单位KG)
     */
    @Excel(name = "损耗数量(单位KG)", sort = 9)
    private Double lossWeight = 0.0;
 
    /**
     * 期末数量(单位KG)
     */
    @Excel(name = "期末数量(单位KG)", sort = 10)
    private Double finalWeight = 0.0;
 
}