对比新文件 |
| | |
| | | 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 dyk |
| | | * @Description |
| | | * @createTime 2025年04月18日 |
| | | */ |
| | | @Data |
| | | @TableName("t_power_adjusted_factor") |
| | | public class PowerAdjustedFactorEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * id |
| | | */ |
| | | @TableId |
| | | private String id; |
| | | /** |
| | | * 名称 |
| | | */ |
| | | private String name; |
| | | /** |
| | | * |
| | | * 点位 |
| | | */ |
| | | private String pointNo; |
| | | /** |
| | | * 排序 |
| | | */ |
| | | private Integer sort; |
| | | } |