1、数据训练列表查询接口 bugfix
2、新增 导出数据训练接口
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.sdm.common.entity.req.data;
|
||||
|
||||
import com.sdm.common.entity.ExportExcelFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class ModelExportExcelFormat {
|
||||
|
||||
/**
|
||||
* 导出的基本属性值
|
||||
*/
|
||||
private List<ExportExcelFormat> excelHeaders;
|
||||
|
||||
/**
|
||||
* 导出数据训练的可选查询参数
|
||||
*/
|
||||
private ModelExportExcelParam params;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.sdm.common.entity.req.data;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ModelExportExcelParam{
|
||||
|
||||
/**
|
||||
* 使用算法
|
||||
*/
|
||||
@Schema(description = "使用算法")
|
||||
private String algorithmUsed;
|
||||
|
||||
/**
|
||||
* 说明
|
||||
*/
|
||||
@Schema(description = "说明")
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 模型名称
|
||||
*/
|
||||
@Schema(description = "模型名称")
|
||||
private String modelName;
|
||||
|
||||
/**
|
||||
* 训练人
|
||||
*/
|
||||
@Schema(description = "训练人")
|
||||
private String trainer;
|
||||
|
||||
/**
|
||||
* 训练状态
|
||||
*/
|
||||
@Schema(description = "训练状态")
|
||||
private String trainingStatus;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user