提交 | 用户 | 时间 | ||
7fd198 | 1 | package com.iailab.module.model.mdk.vo; |
潘 | 2 | |
3 | import lombok.AllArgsConstructor; | |
4 | import lombok.Builder; | |
5 | import lombok.Data; | |
6 | import lombok.NoArgsConstructor; | |
7 | ||
8 | /** | |
9 | * 模型算法参数实体 | |
10 | */ | |
11 | @Data | |
12 | @AllArgsConstructor | |
13 | @NoArgsConstructor | |
14 | @Builder | |
15 | public class ModelArithParamVO { | |
16 | /** | |
17 | * 算法参数名称 | |
18 | */ | |
19 | private String arithParamName; | |
20 | ||
21 | /** | |
22 | * 算法参数类型 | |
23 | */ | |
24 | private String arithParamType; | |
25 | ||
26 | /** | |
27 | * 算法参数值 | |
28 | */ | |
29 | private String arithParamValue; | |
30 | } |