package com.iailab.module.model.mcs.sche.vo;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @date 2021年07月21日 14:08
|
*/
|
@Schema(description = "模型平台 - Response VO")
|
@Data
|
@ExcelIgnoreUnannotated
|
public class StScheduleModelRespVO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
private String id;
|
|
|
/**
|
* 模型名称
|
*/
|
private String modelname;
|
|
|
/**
|
* 调度ID
|
*/
|
private String scheduleid;
|
|
/**
|
* 调度名称
|
*/
|
private String schedulename;
|
|
/**
|
* 对象ID
|
*/
|
private String objectid;
|
|
/**
|
* 对象名称
|
*/
|
private String objectname;
|
|
/**
|
* 类名
|
*/
|
private String classname;
|
|
/**
|
* 方法名
|
*/
|
private String methodname;
|
|
/**
|
* 模型路径
|
*/
|
private String modelpath;
|
|
/**
|
* 端口长度
|
*/
|
private Integer portlength;
|
|
/**
|
* 模型状态
|
*/
|
private Integer modelstatus;
|
}
|