| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.domain.TInformation; |
| | | import com.ruoyi.system.query.TInformationQuery; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TInformationService extends IService<TInformation> { |
| | | |
| | | /** |
| | | * 获取资讯管理分页列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<TInformation> pageList(TInformationQuery query); |
| | | |
| | | /** |
| | | * 资讯上下架 |
| | | * @param id |
| | | * @param status |
| | | * @return |
| | | */ |
| | | int upAndDown(Long id, Integer status); |
| | | } |