鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
3 天以前 6f98c66bbd3eb768d9e16eccea0c42f8f0247136
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
package com.iailab.module.ansteel.power.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2025年04月27日
 */
@Data
@TableName("t_power_adjusted_factor")
public class PowerCapacitorHisEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId
    private String id;
 
    /**
     * 详情ID
     */
    private String detId;
 
    /**
     * 电容器名称
     */
    private String name;
 
    /**
     * 状态
     */
    private String status;
 
    /**
     * 内容
     */
    private String content;
 
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 创建时间
     */
    private String createDate;
}