package com.meteor.bob.repository; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.stereotype.Repository; import com.meteor.bob.model.Sample; @Repository public interface SampleRepository extends JpaRepository, JpaSpecificationExecutor { public Long countByCdAndDel(String cd, Integer del); }