package com.rzyc.mapper; import com.github.pagehelper.Page; import com.rzyc.bean.task.dto.WarnDto; import com.rzyc.model.GovWarning; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; /** *

* 智能预警 Mapper 接口 *

* * @author * @since 2022-11-23 */ @Repository public interface GovWarningMapper extends BaseMapper { List selectAll(@Param("warnDto") WarnDto warnDto); //只能预警分页 List warnList(@Param("condition") String condition); int countNum(@Param("type") Integer type); }