package com.iailab.module.ansteel.api.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
|
/**
|
* 电力功率因数电容器投运状态
|
*
|
* @author Mark sunlightcs@gmail.com
|
* @since 1.0.0 2025-04-11
|
*/
|
@Data
|
public class PowerCapacitorStatusDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "id")
|
private String id;
|
|
@Schema(description = "电容器名称")
|
private String name;
|
|
@Schema(description = "主变数量")
|
private String mainCount;
|
|
@Schema(description = "主变测点编码")
|
private String mainPoint;
|
|
@Schema(description = "下属数量")
|
private String childCount;
|
|
@Schema(description = "下属测点编码")
|
private String childPoint;
|
|
@Schema(description = "投运数量")
|
private String onCount;
|
|
@Schema(description = "备注")
|
private String remark;
|
|
@Schema(description = "排序")
|
private Integer sort;
|
|
|
}
|