提交 | 用户 | 时间
|
c860df
|
1 |
package com.iailab.module.model.api.mcs.dto; |
潘 |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.io.Serializable; |
|
7 |
|
|
8 |
/** |
|
9 |
* @author PanZhibao |
|
10 |
* @Description |
|
11 |
* @createTime 2024年10月10日 |
|
12 |
*/ |
|
13 |
@Schema(description = "RPC 模型 - 调度建议 DTO") |
|
14 |
@Data |
|
15 |
public class PredictModelSettingReqDTO implements Serializable { |
|
16 |
private static final long serialVersionUID = 1L; |
|
17 |
|
b368e6
|
18 |
@Schema(description = "模型ID") |
c860df
|
19 |
private String modelid; |
潘 |
20 |
|
b368e6
|
21 |
@Schema(description = "键") |
c860df
|
22 |
private String key; |
潘 |
23 |
|
b368e6
|
24 |
@Schema(description = "值") |
c860df
|
25 |
private String value; |
潘 |
26 |
} |