Campaign Repository
CampaignRepository
public interface CampaignRepository extends
JpaRepository<Campaign, Long>,
JpaSpecificationExecutor<Campaign>,
SynchronousAccessRepository<Campaign, Long> {
@Query("select c.id from Campaign c where c.executionType = 'AUTOMATIC' and c.automaticCampaignStatus = 'SCHEDULED' and c.active = true")
List<Long> findAutomaticScheduledCampaigns();
} @Query("select c.id from Campaign c where c.executionType = 'AUTOMATIC' and c.automaticCampaignStatus = 'SCHEDULED' and c.active = true")
List<Long> findAutomaticScheduledCampaigns();Last updated
Was this helpful?