hyingbo
2 天以前 6da57b610d97be3f79084d43440e7823d707b249
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
package org.jeecg.modules.eam.dto;
 
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.math.BigDecimal;
 
@Data
public class EquipmentCategoryStatistics {
 
    /**
     * 设备种类
     */
    @Excel(name = "设备种类", width = 15, orderNum = "1")
    private String equipmentType;
 
    /**
     * 设备总数
     */
    @Excel(name = "设备总数", width = 15, orderNum = "2")
    private Integer equipmentCount;
 
    /**
     * 总原值
     */
    @Excel(name = "总原值", width = 15, orderNum = "3")
    private BigDecimal originalValue;
 
    /**
     * 高精度总数
     */
    @Excel(name = "高精度总数", width = 15, orderNum = "4")
    private Integer highPrecisionCount;
 
    /**
     * 高精度原值
     */
    @Excel(name = "高精度原值", width = 15, orderNum = "5")
    private BigDecimal highPrecisionOriginalValue;
 
    /**
     * 国产总数
     */
    @Excel(name = "国产总数", width = 15, orderNum = "6")
    private Integer domesticCount;
 
    /**
     * 国产原值
     */
    @Excel(name = "国产原值", width = 15, orderNum = "7")
    private BigDecimal domesticOriginalValue;
 
    /**
     * 进口总数
     */
    @Excel(name = "进口总数", width = 15, orderNum = "8")
    private Integer importCount;
 
    /**
     * 进口原值
     */
    @Excel(name = "进口原值", width = 15, orderNum = "9")
    private BigDecimal importOriginalValue;
 
    /**
     * 完好总数
     */
    @Excel(name = "完好总数", width = 15, orderNum = "10")
    private Integer intactCount;
 
    /**
     * 完好原值
     */
    @Excel(name = "完好原值", width = 15, orderNum = "11")
    private BigDecimal intactOriginalValue;
}