| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.model.OaNotification; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.system.query.NotificationListQuery; |
| | | import com.ruoyi.system.vo.system.NotificationVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface OaNotificationMapper extends BaseMapper<OaNotification> { |
| | | |
| | | List<NotificationVO> pageList(@Param("query")NotificationListQuery query, @Param("pageInfo")PageInfo<NotificationVO> pageInfo); |
| | | |
| | | } |