package com.iailab.module.model.mcs.pre.vo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @description: 预测项影响因素关联表
|
* @author: dzd
|
* @date: 2025/4/14 13:36
|
**/
|
@Data
|
public class MmPredictInfluenceFactorHandleVO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
private String id;
|
|
/**
|
* 因素预测项id
|
*/
|
private String factorOutputId;
|
|
/**
|
* 偏差值
|
*/
|
private Double deviationValue;
|
|
/**
|
* 统计方式
|
*/
|
private String pattern;
|
|
/**
|
* 真实测点id
|
*/
|
private String pointid;
|
|
/**
|
* 预测长度
|
*/
|
private Integer predictlength;
|
|
/**
|
* 预测粒度
|
*/
|
private Integer granularity;
|
}
|