| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.model.TSysProductIntroduction; |
| | | import com.ruoyi.system.query.TSysProductIntroductionQuery; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TSysProductIntroductionService extends IService<TSysProductIntroduction> { |
| | | |
| | | /** |
| | | * 获取产品介绍分页列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<TSysProductIntroduction> pageList(TSysProductIntroductionQuery query); |
| | | /** |
| | | * 获取产品介绍分页列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<TSysProductIntroduction> pageListApp(TSysProductIntroductionQuery query); |
| | | } |