鞍钢鲅鱼圈能源管控系统后端代码
dengzedong
3 天以前 567a3b404987c8c4919e31292d300e9517cb5987
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
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月28日
 */
@Data
@TableName("t_power_net_dropdown")
public class PowerNetDropdownEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId
    private String id;
 
    private String pCode;
 
    private String groupName;
 
    private String nodeCode;
 
    private String nodeName;
 
    private String curP;
 
    private String curQ;
 
    private String curCos;
 
    private String ext1;
 
    private String ext2;
 
    private String ext3;
 
    private String ext4;
 
    private String ext5;
 
    private Integer sort;
}