123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- 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_econ_equipmentmodel")
- public class ProEconEquipmentmodel extends Model<ProEconEquipmentmodel> {
- private static final long serialVersionUID=1L;
- /**
- * 编号
- */
- private String id;
- /**
- * 编码
- */
- private String nemCode;
- /**
- * 名称
- */
- private String name;
- /**
- * 别名
- */
- private String aname;
- /**
- * 描述
- */
- private String description;
- /**
- * 容量
- */
- private double powerProduction;
- /**
- * 厂商编号
- */
- private String windturbineManufacturerId;
- /**
- * 图片
- */
- private String photo;
- /**
- * 传输总发电量单位
- */
- private String unit;
- /**
- * 切入风速
- */
- private String cutinwindSpeed;
- /**
- * 额定风速
- */
- private String ratedwindSpeed;
- /**
- * 切出风速
- */
- private String cutoutwindSpeed;
- /**
- * 叶片切入面积
- */
- private double sweptArea;
- /**
- * 设备类别
- */
- private String equipmentCategory;
- /**
- * 备用1
- */
- private String spare1;
- /**
- * 备用1
- */
- private String spare2;
- /**
- * 备用3
- */
- private String spare3;
- /**
- * 备用4
- */
- private String spare4;
- @Override
- protected Serializable pkVal() {
- return this.id;
- }
- }
|