package com.qianwen.smartman.modules.notify.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import org.apache.ibatis.annotations.Param; import com.qianwen.smartman.modules.notify.entity.NotifyHistoryEntity; public interface NotifyHistoryEntityMapper extends BaseMapper { IPage listPage(@Param("page") IPage page, @Param("state") String state, @Param("keyword") String keyword, @Param("beginTime") String beginTime, @Param("endTime") String endTime); }