tjx
2025-11-10 187f40fe0c37872a982890c89621da3200b8c21b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
}