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
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.zhitan.costmanagement.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.zhitan.common.core.domain.BaseEntity;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.zhitan.common.annotation.Excel;
 
import java.math.BigDecimal;
 
/**
 * 【请填写功能名称】对象 cost_electricity_Input
 *
 * @author ZhiTan
 * @date 2024-11-08
 */
@Data
@TableName("cost_electricity_Input")
public class CostElectricityInput extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    private String id;
 
    /** 时间类型字典值timeType */
    @Excel(name = "时间类型字典值timeType")
    private String type;
 
    /** 电量 */
    @Excel(name = "电量")
    private BigDecimal electricityNum;
 
    /** 查询时间 */
    @Excel(name = "查询时间")
    private String time;
 
    /** 电费 */
    @Excel(name = "电费")
    private BigDecimal electricityFee;
 
    /** 功率因数 */
    @Excel(name = "功率因数")
    private BigDecimal powerFactor;
 
    /** 尖时段用电量 */
    @Excel(name = "尖时段用电量")
    private BigDecimal sharpElectricity;
 
    /** 峰时段用电量 */
    @Excel(name = "峰时段用电量")
    private BigDecimal peakElectricity;
 
    /** 平时段用电量 */
    @Excel(name = "平时段用电量")
    private BigDecimal flatElectricity;
 
    /** 谷时段用电量 */
    @Excel(name = "谷时段用电量")
    private BigDecimal valleyElectricity;
 
 
}