潘志宝
2024-09-09 bbc1eeba9c29032add5175f2739782fd204de715
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年09月06日
 */
@Schema(description = "模型服务 - 模型设置参数 Response VO")
@Data
@ExcelIgnoreUnannotated
public class StScheduleModelSettingRespVO {
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "模型ID")
    private String modelid;
 
    @Schema(description = "键")
    private String key;
 
    @Schema(description = "值")
    private String value;
 
    @Schema(description = "值类型")
    private String valuetype;
 
    @Schema(description = "名称")
    private String name;
 
    @Schema(description = "排序")
    private Integer sort;
}