package com.whdc.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.whdc.model.dto.GroupWarningDto; import com.whdc.model.entity.QXWarning; import com.whdc.model.vo.QXWarningVO; import org.apache.ibatis.annotations.Param; import java.util.List; public interface QXWarningMapper extends BaseMapper { List find(@Param("dto")QXWarning dto); List findByMsgIsNull(); IPage page(@Param("page") IPage page, @Param("dto") GroupWarningDto dto); List getWarnAndMsg(@Param("stm") String stm,@Param("etm") String etm); }