국유인 배치 수정, 라벨링툴 적합여부 수정
This commit is contained in:
@@ -69,6 +69,7 @@ public class GukYuinStbltJobCoreService {
|
||||
}
|
||||
}
|
||||
|
||||
@Transactional
|
||||
public void updateGukYuinObjectStbltYn(String resultUid, StbltResult stbResult) {
|
||||
gukYuinStbltRepository.updateGukYuinObjectStbltYn(resultUid, stbResult);
|
||||
}
|
||||
|
||||
@@ -524,12 +524,17 @@ public class TrainingDataLabelRepositoryImpl extends QuerydslRepositorySupport
|
||||
.build();
|
||||
|
||||
var inspectionResultInfo =
|
||||
InspectionResultInfo.builder()
|
||||
.verificationResult(convertInspectState(assignment.toDto().getInspectState()))
|
||||
.inappropriateReason("")
|
||||
// .memo(assignment.toDto().getInspectMemo() != null ?
|
||||
// assignment.toDto().getInspectMemo() : "")
|
||||
.build();
|
||||
queryFactory
|
||||
.select(
|
||||
Projections.constructor(
|
||||
InspectionResultInfo.class,
|
||||
mapSheetAnalDataInferenceGeomEntity.fitState,
|
||||
mapSheetAnalDataInferenceGeomEntity.fitStateCmmnt))
|
||||
.from(mapSheetAnalDataInferenceGeomEntity)
|
||||
.where(
|
||||
mapSheetAnalDataInferenceGeomEntity.geoUid.eq(
|
||||
mapSheetAnalDataInferenceGeomEntityEntity.getGeoUid()))
|
||||
.fetchOne();
|
||||
|
||||
// 6. Geometry를 GeoJSON으로 변환
|
||||
InferenceDataGeometry inferData =
|
||||
|
||||
@@ -24,7 +24,6 @@ import com.kamco.cd.kamcoback.trainingdata.dto.TrainingDataReviewDto.DetailRes;
|
||||
import com.kamco.cd.kamcoback.trainingdata.dto.TrainingDataReviewDto.GeoFeatureRequest.Properties;
|
||||
import com.kamco.cd.kamcoback.trainingdata.dto.TrainingDataReviewDto.InferenceDataGeometry;
|
||||
import com.kamco.cd.kamcoback.trainingdata.dto.TrainingDataReviewDto.InferenceDataGeometry.InferenceProperties;
|
||||
import com.kamco.cd.kamcoback.trainingdata.dto.TrainingDataReviewDto.InspectionResultInfo;
|
||||
import com.kamco.cd.kamcoback.trainingdata.dto.TrainingDataReviewDto.LearnDataGeometry;
|
||||
import com.kamco.cd.kamcoback.trainingdata.dto.TrainingDataReviewDto.LearnDataGeometry.LearnProperties;
|
||||
import com.kamco.cd.kamcoback.trainingdata.dto.TrainingDataReviewDto.ReviewGeometryInfo;
|
||||
@@ -553,11 +552,17 @@ public class TrainingDataReviewRepositoryImpl extends QuerydslRepositorySupport
|
||||
.build();
|
||||
|
||||
var inspectionResultInfo =
|
||||
InspectionResultInfo.builder()
|
||||
.verificationResult(convertInspectState(assignment.toDto().getInspectState()))
|
||||
.inappropriateReason("")
|
||||
.memo("")
|
||||
.build();
|
||||
queryFactory
|
||||
.select(
|
||||
Projections.constructor(
|
||||
TrainingDataReviewDto.InspectionResultInfo.class,
|
||||
mapSheetAnalDataInferenceGeomEntity.fitState,
|
||||
mapSheetAnalDataInferenceGeomEntity.fitStateCmmnt))
|
||||
.from(mapSheetAnalDataInferenceGeomEntity)
|
||||
.where(
|
||||
mapSheetAnalDataInferenceGeomEntity.geoUid.eq(
|
||||
mapSheetAnalDataInferenceGeomEntityEntity.getGeoUid()))
|
||||
.fetchOne();
|
||||
|
||||
// 6. Geometry를 GeoJSON으로 변환
|
||||
InferenceDataGeometry inferData =
|
||||
|
||||
Reference in New Issue
Block a user