CampaignExecution Repository
CampaignExecutionRepository
Code Example
public interface CampaignExecutionRepository extends
JpaRepository<CampaignExecution, Long>,
JpaSpecificationExecutor<CampaignExecution>,
SynchronousAccessRepository<CampaignExecution, Long> {
@Query("select e.id from CampaignExecution e where e.status = 'NEW' order by e.id desc limit 1")
Optional<Long> findNewExecutionId();
}Inherited Interfaces
Key Method
Usage Example
Last updated
Was this helpful?