package com.artfess.yhxt.thirdparty.dao;

import com.artfess.yhxt.thirdparty.model.BizTpDevice;
import com.artfess.yhxt.thirdparty.model.BizTpWarningEvents;
import com.artfess.yhxt.thirdparty.vo.WarningEventsVountVo;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import org.apache.ibatis.annotations.Param;

import java.util.HashMap;

/**
 * 第三方传输预警事件 Mapper 接口
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 管理员
 * @since 2023-06-15
 */
public interface BizTpWarningEventsDao extends BaseMapper<BizTpWarningEvents> {

    IPage<BizTpWarningEvents> queryPage(IPage<BizTpWarningEvents> convert2IPage, @Param("map")  HashMap<String, Object> map,@Param(Constants.WRAPPER) Wrapper<BizTpWarningEvents> convert2Wrapper);


    WarningEventsVountVo warningCountTotal(IPage<BizTpWarningEvents> convert2IPage, @Param("map")  HashMap<String, Object> map,@Param(Constants.WRAPPER) Wrapper<BizTpWarningEvents> convert2Wrapper);




}
