1 changed files with 37 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||||
|
package cn.iocoder.yudao.module.alert.controller.admin.instant.vo; |
||||
|
|
||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
@Schema(description = "运行中心 - 模型实例不分页 Request VO") |
||||
|
@Data |
||||
|
public class InstantReqVO { |
||||
|
|
||||
|
|
||||
|
@Schema(description = "机组id", example = "id") |
||||
|
private Integer unit; |
||||
|
@Schema(description = "系统id", example = "id") |
||||
|
private Integer type; |
||||
|
@Schema(description = "子系统id", example = "id") |
||||
|
private Integer system; |
||||
|
|
||||
|
@Schema(description = "系统id", example = "yudao") |
||||
|
private Integer modelId; |
||||
|
|
||||
|
@Schema(description = "模型名称", example = "yudao") |
||||
|
private String mpName; |
||||
|
|
||||
|
@Schema(description = "算法", example = "yudao") |
||||
|
private String algorithmId; |
||||
|
|
||||
|
@Schema(description = "运行状态", example = "yudao") |
||||
|
private String running; |
||||
|
|
||||
|
@Schema(description = "运行日志", example = "yudao") |
||||
|
private String runningLog; |
||||
|
|
||||
|
@Schema(description = "更新状态", example = "yudao") |
||||
|
private String isUpdate; |
||||
|
} |
||||
Loading…
Reference in new issue