package com.gyee.power.fitting.model;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
*
*
*
*
* @author chenmh
* @since 2022-11-03
*/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("POWERFITTINGANALYSIS")
public class Powerfittinganalysis extends Model {
private static final long serialVersionUID=1L;
@TableField("ID")
private String id;
@TableField("STATION")
private String station;
@TableField("STATIONCN")
private String stationcn;
@TableField("WINDTURBINE")
private String windturbine;
@TableField("CODE")
private String code;
@TableField("INTERVAL")
private String interval;
@TableField("TIME")
private String time;
@TableField("PATH")
private String path;
@TableField("TYPE")
private String type;
@TableField("PROCESSID")
private String processid;
@TableField("CPAVG")
private Double cpavg;
@TableField("SPEEDAVG")
private Double speedavg;
@TableField("FREQUENCY")
private Double frequency;
@TableField("PCRATIO")
private Double pcratio;
@TableField("PC5RATIO")
private Double pc5ratio;
@TableField("PC10RATIO")
private Double pc10ratio;
@TableField("PC12RATIO")
private Double pc12ratio;
@TableField("PC25RATIO")
private Double pc25ratio;
@Override
protected Serializable pkVal() {
return null;
}
}