package com.iailab.module.model.mcs.pre.vo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @description: 预测项影响因素关联表
|
* @author: dzd
|
* @date: 2025/4/14 13:36
|
**/
|
@Data
|
public class MmPredictInfluenceFactorVO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
private String id;
|
|
/**
|
* 配置id
|
*/
|
private String configId;
|
|
/**
|
* 因素预测项id
|
*/
|
private String factorOutputId;
|
|
/**
|
* 因素预测项名称
|
*/
|
private String factorOutputName;
|
|
/**
|
* 偏差值
|
*/
|
private Double deviationValue;
|
|
/**
|
* 统计方式
|
*/
|
private String pattern;
|
}
|