| | |
| | | import com.ruoyi.notice.dto.InformationNotificationDto; |
| | | import com.ruoyi.notice.pojo.InformationNotification; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Mapper |
| | | public interface InformationNotificationMapper extends BaseMapper<InformationNotification> { |
| | | |
| | | IPage<InformationNotificationDto> getPage(Page page, String messageType, Integer userId); |
| | | IPage<InformationNotificationDto> getPage(Page page, @Param("messageType") String messageType, @Param("userId")Integer userId); |
| | | } |