2026-08-05 9e97c94713ada364bfee7be2616c79a53bafb8c8
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
30
31
32
33
34
35
36
37
38
package cn.iocoder.yudao.module.bi.service.config;
 
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.module.bi.dal.dataobject.BiChartConfigDO;
 
/**
 * 图表配置 Service 接口
 *
 * @author 芋道源码
 */
public interface BiChartConfigService {
 
    /**
     * 创建图表配置
     */
    Long create(BiChartConfigDO config);
 
    /**
     * 更新图表配置
     */
    void update(BiChartConfigDO config);
 
    /**
     * 删除图表配置
     */
    void delete(Long id);
 
    /**
     * 获取图表配置
     */
    BiChartConfigDO get(Long id);
 
    /**
     * 分页查询图表配置
     */
    PageResult<BiChartConfigDO> getPage(Long dashboardId, Integer pageNo, Integer pageSize);
 
}