sgj
2026-03-12 533c9a4e44b06c90df7434a38e0da26e10cdac46
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
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 SuperInventoryReportExport implements Serializable {
 
    @Excel(name = "收储公司", sort = 1)
    private String customerName;
 
 
    @Excel(name = "所属库区", sort = 2)
    private String deptName;
 
 
 
    @Excel(name = "所属仓库", sort = 3)
    private String depotName;
 
 
    /**
     * 期初数量(单位KG)
     */
    @Excel(name = "期初数量(单位KG)", sort = 4)
    private String initialWeight = "0.0";
 
    /**
     * 入库数量(单位KG)
     */
    @Excel(name = "入库数量(单位KG)", sort = 5)
    private String recordInWeight = "0.0";
 
    /**
     * 倒入数量(单位KG)
     */
    @Excel(name = "倒入数量(单位KG)", sort = 6)
    private String changeInWeight = "0.0";
 
    /**
     * 出库数量(单位KG)
     */
    @Excel(name = "出库数量(单位KG)", sort = 7)
    private String recordOutWeight = "0.0";
 
    /**
     * 倒出数量(单位KG)
     */
    @Excel(name = "倒出数量(单位KG)", sort = 8)
    private String changeOutWeight = "0.0";
 
    /**
     * 损耗数量(单位KG)
     */
    @Excel(name = "损耗数量(单位KG)", sort = 9)
    private String lossWeight = "0.0";
 
    /**
     * 期末数量(单位KG)
     */
    @Excel(name = "期末数量(单位KG)", sort = 10)
    private String finalWeight = "0.0";
 
}