潘志宝
2024-12-25 89800665b27cf49b5e5bdb034df9d165c7382637
提交 | 用户 | 时间
bbc1ee 1 package com.iailab.module.model.mcs.sche.vo;
2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 /**
7  * @author PanZhibao
8  * @Description
9  * @createTime 2024年09月06日
10  */
11 @Schema(description = "模型服务 - 模型设置参数创建/修改 Request VO")
12 @Data
13 public class StScheduleModelSettingSaveReqVO {
14
15     @Schema(description = "ID")
16     private String id;
17
18     @Schema(description = "模型ID")
19     private String modelid;
20
21     @Schema(description = "键")
22     private String key;
23
24     @Schema(description = "值")
25     private String value;
26
27     @Schema(description = "值类型")
28     private String valuetype;
29
30     @Schema(description = "名称")
31     private String name;
32
33     @Schema(description = "排序")
34     private Integer sort;
35 }