Prefix 수정
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
package com.kamco.cd.kamcoback.postgres.repository.Inference;
|
||||
|
||||
public interface InferenceResultMngRepositoryCustom {}
|
||||
import com.kamco.cd.kamcoback.postgres.entity.MapSheetLearnEntity;
|
||||
|
||||
public interface InferenceResultMngRepositoryCustom {
|
||||
|
||||
MapSheetLearnEntity getInferenceMgnResultList();
|
||||
}
|
||||
|
||||
@@ -1,6 +1,18 @@
|
||||
package com.kamco.cd.kamcoback.postgres.repository.Inference;
|
||||
|
||||
import com.kamco.cd.kamcoback.postgres.entity.MapSheetLearnEntity;
|
||||
import com.querydsl.jpa.impl.JPAQueryFactory;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public class InferenceResultMngRepositoryImpl implements InferenceResultMngRepositoryCustom {}
|
||||
@RequiredArgsConstructor
|
||||
public class InferenceResultMngRepositoryImpl implements InferenceResultMngRepositoryCustom {
|
||||
|
||||
private final JPAQueryFactory queryFactory;
|
||||
|
||||
@Override
|
||||
public MapSheetLearnEntity getInferenceMgnResultList() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user