package com.artfess.yhxt.thirdparty.manager;

import com.artfess.base.query.PageList;
import com.artfess.base.query.QueryFilter;
import com.artfess.yhxt.thirdparty.model.BizTpDevice;
import com.artfess.yhxt.thirdparty.model.BizTpWarningEvents;
import com.artfess.base.manager.BaseManager;
import com.artfess.yhxt.thirdparty.vo.TpDeviceTypeCountVo;
import com.artfess.yhxt.thirdparty.vo.WarningEventsVountVo;

/**
 * 第三方传输预警事件 服务类
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 管理员
 * @since 2023-06-15
 */
public interface BizTpWarningEventsManager extends BaseManager<BizTpWarningEvents> {



    WarningEventsVountVo warningCountTotal(QueryFilter<BizTpWarningEvents> queryFilter);

    PageList<BizTpWarningEvents> pageList(QueryFilter<BizTpWarningEvents> queryFilter);

}
