Merge remote-tracking branch 'origin/master'

This commit is contained in:
snoop 2017-07-28 13:53:38 +09:00
commit c1522415c6
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);
}