我想这样写一个查询(我知道它不起作用)。
@Component
public interface CountryRepository extends CrudRepository<Country, Integer> {
@Query("select c from Country c " +
"where c IN (:countriesCustom)")
List<GfcaMtps> findByCountryPkAndAliceIdIsNull(List<CountryCustomPk> countriesCustom);
}