package com.iailab.module.ansteel.power.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @description: 功率因数管控
|
* @author: lirm
|
* @date: 2025/06/03
|
**/
|
@Data
|
@TableName("t_power_factor_control")
|
public class PowerFactorControlEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
private String type;
|
|
private String name;
|
|
private String dataType;
|
|
private String predResult;
|
|
private Integer cosIndex;
|
|
private Integer sort;
|
}
|