| | |
| | | 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; |
| | |
| | | * @date 2021年07月19日 15:03 |
| | | */ |
| | | @Data |
| | | @TableName("T_ST_SCHEDULE_MODEL") |
| | | public class StScheduleModelEntity implements Serializable { |
| | | @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; |
| | | |
| | | /** |
| | | * 模型名称 |
| | | */ |
| | | @NotBlank(message="模型名称不能为空") |
| | | private String modelname; |
| | | |
| | | private String modelName; |
| | | |
| | | /** |
| | | * 调度ID |
| | | * 模型类型 |
| | | */ |
| | | private String scheduleid; |
| | | |
| | | /** |
| | | * 对象ID |
| | | */ |
| | | private String objectid; |
| | | private String modelType; |
| | | |
| | | /** |
| | | * 类名 |
| | | */ |
| | | private String classname; |
| | | private String className; |
| | | |
| | | /** |
| | | * 方法名 |
| | | */ |
| | | private String methodname; |
| | | private String methodName; |
| | | |
| | | /** |
| | | * 输入数量 |
| | | */ |
| | | private Integer portLength; |
| | | |
| | | /** |
| | | * 参数构造 |
| | | */ |
| | | private String paramStructure; |
| | | |
| | | /** |
| | | * 模型路径 |
| | | */ |
| | | private String modelpath; |
| | | private String modelPath; |
| | | |
| | | /** |
| | | * 端口长度 |
| | | * 结果字符串 |
| | | */ |
| | | private Integer portlength; |
| | | private String resultStrId; |
| | | |
| | | /** |
| | | * 模型状态 |
| | | * 调用方式 |
| | | */ |
| | | private Integer modelstatus; |
| | | private String invocation; |
| | | |
| | | /** |
| | | * 状态 |
| | | */ |
| | | private Integer status; |
| | | } |