1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.iailab.module.model.mcs.sche.vo;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
|
| /**
| * @author Jay
| */
| @Schema(description = "模型服务 - 调度建议快照配置分页 Request VO")
| @Data
| public class StSuggestSnapshotConfDetPageReqVO {
|
| @Schema(description = "模型ID")
| private String confId;
| }
|
|