dao property bug fix

This commit is contained in:
insanity 2017-07-28 13:52:56 +09:00
parent eeeb3e9c68
commit f379e6bfe9
2 changed files with 2 additions and 2 deletions

View File

@ -13,5 +13,5 @@ import java.util.List;
@Repository
public interface MetaCrawlerInputItemDAO extends JpaRepository<MetaCrawlerInputItem, Integer> {
List<MetaCrawlerInputItem> findAllByMetaCrawler(MetaCrawler metaCrawler);
List<MetaCrawlerInputItem> findAllByCrawler(MetaCrawler crawler);
}

View File

@ -13,5 +13,5 @@ import java.util.List;
@Repository
public interface MetaInfraVendorDAO extends JpaRepository<MetaInfraVendor, Integer> {
List<MetaInfraVendor> findAllByMetaInfraType(MetaInfraType infraType);
List<MetaInfraVendor> findAllByInfraType(MetaInfraType infraType);
}