123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- package com.gyee.power.fitting.model;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.extension.activerecord.Model;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * <p>
- * 设备测点
- * </p>
- *
- * @author chenmh
- * @since 2023-09-22
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @TableName("pro_basic_equipment_point")
- public class ProBasicEquipmentPoint extends Model<ProBasicEquipmentPoint> {
- private static final long serialVersionUID=1L;
- /**
- * 编号
- */
- private String id;
- /**
- * 编码
- */
- private String nemCode;
- /**
- * 名称
- */
- private String name;
- /**
- * 实时库名称
- */
- private String aname;
- /**
- * 型号
- */
- private String model;
- /**
- * 单位
- */
- private String valueUnit;
- /**
- * 英文名称
- */
- private String englishName;
- /**
- * 类型编号
- */
- private String typeId;
- /**
- * 所属型号
- */
- private String modelId;
- /**
- * 最大值
- */
- private String maxval;
- /**
- * 最小值
- */
- private String minval;
- /**
- * 合理最大值
- */
- private String reasonableMaxval;
- /**
- * 合理最小值
- */
- private String reasonableMinval;
- /**
- * 风机编号
- */
- private String windturbineId;
- /**
- * 统一编码
- */
- private String uniformCode;
- /**
- * 短ID
- */
- private String shortId;
- /**
- * 长ID
- */
- private String longId;
- /**
- * 场站编号
- */
- private String windpowerstationId;
- /**
- * 实时配置编号
- */
- private String realtimeId;
- /**
- * 部件编号
- */
- private String logicalUnitId;
- /**
- * 集团测点编号
- */
- private String groupPointId;
- /**
- * 具体名称
- */
- private String specificName;
- /**
- * 系数
- */
- private String coefficient;
- @Override
- protected Serializable pkVal() {
- return this.id;
- }
- }
|