fix(图表): jpa改造 (#16796)

This commit is contained in:
王嘉豪
2025-08-22 11:41:42 +08:00
committed by GitHub
parent 6e5cd51275
commit 32d4af75ba

View File

@@ -11,7 +11,7 @@ import java.util.List;
public interface SnapshotVisualizationLinkageRepository extends JpaRepository<SnapshotVisualizationLinkage, Long>, JpaSpecificationExecutor<SnapshotVisualizationLinkage> {
@EntityGraph(attributePaths = {"linkageFields"})
// @EntityGraph(attributePaths = {"linkageFields"})
List<SnapshotVisualizationLinkage> findByDvIdAndSourceViewId(Long dvId, Long sourceViewId);
}