新增算法分类配置请求参数
This commit is contained in:
parent
1cae0f1e4c
commit
7c3abcfa3e
@ -0,0 +1,21 @@
|
|||||||
|
package com.yfd.platform.modules.algorithm.domain;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Date: 2025/5/14 10:19
|
||||||
|
* @Description: 算法分类和参数请求对象
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel("算法分类和参数请求对象")
|
||||||
|
public class AlgorithmParamsRequest {
|
||||||
|
|
||||||
|
@ApiModelProperty("算法分类对象")
|
||||||
|
private AlgorithmClass algorithmClass;
|
||||||
|
@ApiModelProperty("算法分类参数集合")
|
||||||
|
private List<AlgorithmParams> algorithmParamsList;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user