| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.model.OaNotification; |
| | | import com.ruoyi.system.query.NotificationListQuery; |
| | | import com.ruoyi.system.vo.system.NotificationVO; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface OaNotificationService extends IService<OaNotification> { |
| | | |
| | | PageInfo<NotificationVO> pageList(NotificationListQuery query); |
| | | |
| | | PageInfo<NotificationVO> pageListUser(NotificationListQuery query); |
| | | } |