package com.iailab.module.ansteel.api.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* 电力功率因数电容器投运状态
|
*
|
* @author Mark sunlightcs@gmail.com
|
* @since 1.0.0 2025-04-11
|
*/
|
@Data
|
@TableName("t_power_capacitor_status")
|
public class PowerCapacitorStatusEntity {
|
|
/**
|
* id
|
*/
|
@TableId
|
private String id;
|
/**
|
* 电容器名称
|
*/
|
private String name;
|
/**
|
* 主变数量
|
*/
|
private String mainCount;
|
/**
|
* 主变测点编码
|
*/
|
private String mainPoint;
|
/**
|
* 下属数量
|
*/
|
private String childCount;
|
/**
|
* 下属测点编码
|
*/
|
private String childPoint;
|
/**
|
* 投运数量
|
*/
|
private String onCount;
|
/**
|
* 备注
|
*/
|
private String remark;
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
}
|