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