鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
3 天以前 eb7a190b7051ca01d19a2ba86407d8a51c11e1d1
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
package com.iailab.module.ansteel.api.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2025年04月27日
 */
@Data
public class PowerCapacitorDetDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "id")
    private String id;
 
    @Schema(description = "类型")
    private String type;
 
    @Schema(description = "电容器名称")
    private String name;
 
    @Schema(description = "投退指示灯")
    private Integer status;
}