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