package com.gs.simple.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.gs.simple.common.ResultDto;
|
import com.gs.simple.domain.BiView;
|
|
import java.util.List;
|
|
/**
|
* @author 28567
|
* @description 针对表【MES_SIMPLE_CCB(BiView表)】的数据库操作Service
|
* @createDate 2023-11-08 14:19:52
|
*/
|
public interface BiViewService extends IService<BiView> {
|
|
/**
|
* 根据父节点ID获取BiView列表
|
* @param pid 父节点ID
|
* @return BiView列表
|
*/
|
ResultDto<List<BiView>> getListByPid(Integer pid);
|
|
/**
|
* 根据父节点ID获取有href的BiView列表
|
* @param pid 父节点ID
|
* @return BiView列表
|
*/
|
ResultDto<List<BiView>> getListByPidWithHref(Integer pid);
|
}
|