shp파일 a 링크로 다운로드할때 이력 저장 변경
This commit is contained in:
@@ -46,6 +46,13 @@ public class AuditLogCoreService
|
||||
return auditLogRepository.findLogByAccount(searchRange, searchValue);
|
||||
}
|
||||
|
||||
/**
|
||||
* 다운로드 이력 조회
|
||||
*
|
||||
* @param searchReq 페이징 파라미터
|
||||
* @param downloadReq 다운로드 이력 팝업 검색 조건
|
||||
* @return 다운로드 이력 정보 목록
|
||||
*/
|
||||
public Page<AuditLogDto.DownloadRes> findLogByAccount(
|
||||
AuditLogDto.searchReq searchReq, DownloadReq downloadReq) {
|
||||
return auditLogRepository.findDownloadLog(searchReq, downloadReq);
|
||||
|
||||
@@ -527,10 +527,10 @@ public class InferenceResultCoreService {
|
||||
}
|
||||
|
||||
/**
|
||||
* uid 조회
|
||||
* 추론 정보 조회 하여 batch id, 32자 uid 리턴
|
||||
*
|
||||
* @param uuid
|
||||
* @return
|
||||
* @param uuid 추론 uuid
|
||||
* @return 추론정보
|
||||
*/
|
||||
public InferenceLearnDto getInferenceUid(UUID uuid) {
|
||||
MapSheetLearnEntity entity = inferenceResultRepository.getInferenceUid(uuid).orElse(null);
|
||||
@@ -547,7 +547,7 @@ public class InferenceResultCoreService {
|
||||
}
|
||||
|
||||
/**
|
||||
* 실행중인 추론 도엽명 목록
|
||||
* 분석중인 추론 도엽명 목록
|
||||
*
|
||||
* @param uuid 추론 실행중인 uuid
|
||||
* @return
|
||||
|
||||
@@ -16,5 +16,11 @@ public interface InferenceResultRepositoryCustom {
|
||||
|
||||
Long getInferenceLearnIdByUuid(UUID uuid);
|
||||
|
||||
/**
|
||||
* 추론 정보 조회
|
||||
*
|
||||
* @param uuid 추론 uuid
|
||||
* @return 추론 정보
|
||||
*/
|
||||
Optional<MapSheetLearnEntity> getInferenceUid(UUID uuid);
|
||||
}
|
||||
|
||||
@@ -14,5 +14,11 @@ public interface MapSheetLearn5kRepositoryCustom {
|
||||
|
||||
List<Long> findCompleted5kList(UUID uuid, List<Long> completedIds, String type);
|
||||
|
||||
/**
|
||||
* 추론 실행중일때 분석중인 도엽명 목록 조회
|
||||
*
|
||||
* @param uuid 추론 uuid
|
||||
* @return 도엽명+50K 도엽번호
|
||||
*/
|
||||
List<String> getInferenceRunMapId(UUID uuid);
|
||||
}
|
||||
|
||||
@@ -13,6 +13,12 @@ public interface MembersRepositoryCustom {
|
||||
|
||||
boolean existsByEmployeeNo(String employeeNo);
|
||||
|
||||
/**
|
||||
* 사번으로 사용자 조회
|
||||
*
|
||||
* @param employeeNo 사번
|
||||
* @return 사용자 정보 조회
|
||||
*/
|
||||
Optional<MemberEntity> findByEmployeeNo(String employeeNo);
|
||||
|
||||
Optional<MemberEntity> findByUserId(String userId);
|
||||
|
||||
Reference in New Issue
Block a user