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 2024年09月06日
|
*/
|
@Data
|
@TableName("t_st_schedule_model_param")
|
public class StScheduleModelParamEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 模型ID
|
*/
|
private String modelid;
|
|
/**
|
* 模型参数名称
|
*/
|
private String modelparamname;
|
|
/**
|
* 模型参数ID
|
*/
|
private String modelparamid;
|
|
/**
|
* 模型参数排序
|
*/
|
private Integer modelparamorder;
|
|
/**
|
* 模型参数端口排序
|
*/
|
private Integer modelparamportorder;
|
|
/**
|
* 数据长度
|
*/
|
private Integer datalength;
|
|
/**
|
* 数据类型
|
*/
|
private String modelparamtype;
|
}
|