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; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/mapper/NotifyHistoryEntityMapper.class */ 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); }