ustcyc
2025-01-07 5fd51c437819f1c9d027a936db4ba2ee7cd2e053
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
package com.zhitan.energydata.vo;
 
import lombok.Getter;
import lombok.Setter;
 
import java.math.BigDecimal;
 
@Getter
@Setter
public class EnergyChainYoyVO {
 
    /**
     * 能源类型编号
     */
    private String energyNo;
    /**
     * 能源类型名称
     */
    private String energyName;
 
    /**
     * 能源单位
     */
    private String energyUnit;
 
    /**
     * 合计值
     */
    private BigDecimal samePeriodCount;
    /**
     * 合计值
     */
    private BigDecimal count;
 
    /**
     * 同比
     */
    private BigDecimal tongbi;
 
    /**
     * 环比
     */
    private BigDecimal huanbi;
 
    /** 等价折标系数 */
    private String coefficient;
 
    /**
     * 转换为吨标煤
     */
    private BigDecimal tonCount;
}