package com.iailab.module.model.mcs.pre.entity;
|
|
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;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @description:
|
* @author: dzd
|
* @date: 2025/4/8 11:59
|
**/
|
@Data
|
@TableName("t_mm_predict_auto_adjust_config")
|
public class MmPredictAutoAdjustConfigEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 配置名称
|
*/
|
private String configName;
|
|
/**
|
* 配置编码
|
*/
|
private String configCode;
|
|
/**
|
* 预测输出id
|
*/
|
private String outputId;
|
|
/**
|
* 测点id
|
*/
|
private String pointId;
|
|
/**
|
* 取值时间范围
|
*/
|
private Integer t;
|
|
/**
|
* 触发规则
|
*/
|
private String triggerRule;
|
|
/**
|
* 触发值
|
*/
|
private Double triggerValue;
|
|
/**
|
* 调整方向(1:正向,-1:反向)
|
*/
|
private Integer adjustDirection;
|
|
/**
|
* 调整长度
|
*/
|
private Integer adjustLength;
|
|
/**
|
* 调整值计算规则
|
*/
|
private String adjustValueRule;
|
|
/**
|
* 是否启用(0禁用 1启用)
|
*/
|
private Integer isEnable;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
}
|