package com.iailab.module.model.mcs.sche.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;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2025年02月20日
|
*/
|
@Data
|
@TableName("t_st_adjust_config_det")
|
public class StAdjustConfigDetEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 配置ID
|
*/
|
private String configId;
|
|
/**
|
* 预测项类型
|
*/
|
private String itemTypeId;
|
|
/**
|
* 预测项ID
|
*/
|
private String predictItemId;
|
|
/**
|
* 输出KEY
|
*/
|
private String outKey;
|
|
/**
|
* 输出名称
|
*/
|
private String outName;
|
|
/**
|
* 参数排序
|
*/
|
private Integer modelParamOrder;
|
|
/**
|
* 输入排序
|
*/
|
private Integer modelParamPortOrder;
|
|
/**
|
* 执行顺序
|
*/
|
private Integer sort;
|
}
|