鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
3 天以前 d604f0778251a9bde0197efff4219d4bbbcb48d5
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_capacitor_det")
public class PowerCapacitorDetEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId
    private String id;
 
    /**
     * 投运状态父ID
     */
    private String statusId;
 
    /**
     * 类型
     */
    private String type;
 
    /**
     * 电容器名称
     */
    private String name;
 
    /**
     * 测点编码
     */
    private String pointNo;
 
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 排序
     */
    private Integer sort;
}