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 com.iailab.framework.mybatis.core.dataobject.BaseDO;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotBlank;
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @date 2021年07月19日 15:03
|
*/
|
@Data
|
@TableName("t_st_schedule_model")
|
public class StScheduleModelEntity extends BaseDO {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 模型编号
|
*/
|
private String modelCode;
|
|
/**
|
* 模型名称
|
*/
|
private String modelName;
|
|
/**
|
* 模型类型
|
*/
|
private String modelType;
|
|
/**
|
* 类名
|
*/
|
private String className;
|
|
/**
|
* 方法名
|
*/
|
private String methodName;
|
|
/**
|
* 输入数量
|
*/
|
private Integer portLength;
|
|
/**
|
* 参数构造
|
*/
|
private String paramStructure;
|
|
/**
|
* 模型路径
|
*/
|
private String modelPath;
|
|
/**
|
* 结果字符串
|
*/
|
private String resultStrId;
|
|
/**
|
* 调用方式
|
*/
|
private String invocation;
|
|
/**
|
* 状态
|
*/
|
private Integer status;
|
}
|