학습데이터 목록에 추론 uuid 컬럼도 추가
This commit is contained in:
@@ -64,6 +64,7 @@ public class LabelWorkDto {
|
||||
|
||||
private String resultUid;
|
||||
private String subUid;
|
||||
private UUID learnUuid;
|
||||
|
||||
@JsonProperty("detectYear")
|
||||
public String getDetectYear() {
|
||||
|
||||
@@ -233,7 +233,8 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
|
||||
.otherwise((ZonedDateTime) null),
|
||||
mapSheetLearnEntity.uid,
|
||||
Expressions.stringTemplate(
|
||||
"substring({0} from 1 for 8)", mapSheetLearnEntity.uid)))
|
||||
"substring({0} from 1 for 8)", mapSheetLearnEntity.uid),
|
||||
mapSheetLearnEntity.uuid))
|
||||
.from(mapSheetAnalInferenceEntity)
|
||||
.innerJoin(mapSheetAnalDataInferenceEntity)
|
||||
.on(whereSubDataBuilder)
|
||||
@@ -250,7 +251,8 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
|
||||
mapSheetAnalInferenceEntity.createdDttm,
|
||||
mapSheetAnalInferenceEntity.analState,
|
||||
mapSheetAnalInferenceEntity.id,
|
||||
mapSheetLearnEntity.uid)
|
||||
mapSheetLearnEntity.uid,
|
||||
mapSheetLearnEntity.uuid)
|
||||
.orderBy(
|
||||
mapSheetAnalInferenceEntity.targetYyyy.desc(),
|
||||
mapSheetAnalInferenceEntity.compareYyyy.desc(),
|
||||
|
||||
Reference in New Issue
Block a user