同步代码

This commit is contained in:
lulz1 2024-02-29 13:32:38 +08:00
parent e4ba73bbf1
commit faf24581d9
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public interface JdbcLocationRepository extends CrudRepository<Location, Long> {
List<Location> findByLocationNameIn(Collection<String> locationName);
List<Location> findByLocationNameInAndLocationPathContainingAndLevel(Collection<String> locationName, String locationPath, Integer level)
List<Location> findByLocationNameInAndLocationPathContainingAndLevel(Collection<String> locationName, String locationPath, Integer level);
List<Location> findByLocationIdIn(Collection<Long> locationId);
}