Interface AppIncidentDataManager

All Superinterfaces:
DataManager<AppIncidentEntity>
All Known Implementing Classes:
MybatisAppIncidentDataManager

public interface AppIncidentDataManager extends DataManager<AppIncidentEntity>
  • Method Details

    • findAppIncidentsByAppKey

      List<AppIncidentEntity> findAppIncidentsByAppKey(String appKey)
    • findAppIncidentsByAppKeyAndTenantId

      List<AppIncidentEntity> findAppIncidentsByAppKeyAndTenantId(String appKey, String tenantId)
    • findAppIncidentCountByQueryCriteria

      long findAppIncidentCountByQueryCriteria(AppIncidentQueryImpl appIncidentQuery)
    • findAppIncidentsByQueryCriteria

      List<AppIncident> findAppIncidentsByQueryCriteria(AppIncidentQueryImpl appIncidentQuery)
    • deleteAppIncidentsByAppKey

      void deleteAppIncidentsByAppKey(String appKey)
    • deleteAppIncidentsByAppKeyAndTenantId

      void deleteAppIncidentsByAppKeyAndTenantId(String appKey, String tenantId)
    • deleteAppIncidentsByQuery

      void deleteAppIncidentsByQuery(AppIncidentQuery appIncidentQuery)