회차 Uid로 Uuid 조회 api 추가

This commit is contained in:
2026-02-24 12:37:01 +09:00
parent c93d40f3f3
commit 514b07356e
5 changed files with 43 additions and 18 deletions

View File

@@ -117,4 +117,14 @@ public class ChangeDetectionService {
String chnDtctId, String cdObjectId, List<String> cdObjectIds, String pnu) {
return changeDetectionCoreService.getPointListByCd(chnDtctId, cdObjectId, cdObjectIds);
}
/**
* Learn uuid 조회
*
* @param chnDtctId
* @return uuid
*/
public UUID getLearnUuid(String chnDtctId) {
return changeDetectionCoreService.getLearnUuid(chnDtctId);
}
}