[KC-103] 추론 실행 배치 오류 수정

This commit is contained in:
2026-01-13 14:41:29 +09:00
parent c77f0a6336
commit c3e3d2889c
5 changed files with 23 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ public class InferenceProgressDto {
private String cdModelClsPath;
private String cdModelClsFileName;
private String clsModelVersion;
private Integer priority;
private Double priority;
public InferenceProgressDto(
InferenceProgressDto.pred_requests_areas pred_requests_areas,
@@ -31,7 +31,7 @@ public class InferenceProgressDto {
String cdModelClsPath,
String cdModelClsFileName,
String clsModelVersion,
Integer priority) {
Double priority) {
this.pred_requests_areas = pred_requests_areas;
this.modelVersion = modelVersion;
this.cdModelPath = cdModelPath;

View File

@@ -18,7 +18,7 @@ public class InferenceSendDto {
private String cls_model_path;
private String cls_model_version;
private String cd_model_type;
private Integer priority;
private Double priority;
@Getter
@Setter

View File

@@ -326,7 +326,7 @@ public class InferenceResultService {
sendDto.setCls_model_path(cdClsModelPath);
sendDto.setCls_model_version(modelInfo.getModelVer());
sendDto.setCd_model_type(modelType);
sendDto.setPriority(modelInfo.getPriority().intValue());
sendDto.setPriority(modelInfo.getPriority());
return sendDto;
}