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);
|
|
}
|