1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.ydd.module.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ydd.module.domain.Help;
- import com.ydd.module.domain.HelpColumn;
- import com.ydd.module.dto.HelpDetailDto;
- import com.ydd.module.dto.HelpDto;
- import java.util.List;
- /**
- * Demo class
- *
- * @author 14027
- * @date 2021/9/16 14:37
- */
- public interface IHelpColumnService extends IService<HelpColumn> {
- /**
- * 查询列表
- * @param helpColumn 实体
- * @return 列表
- */
- List<HelpColumn> queryList(HelpColumn helpColumn);
- /**
- * 获取所有栏目
- * @return
- */
- List<HelpDto> getAll(Integer type);
- /**
- * 帮助中心内容
- * @param secondColumnId
- * @return
- */
- List<HelpDetailDto> getHelpDetail(Integer secondColumnId,String platformType);
- }
|