export interface SmartBITreeMarkParams {
  /** 角色ID */
  role_id: string;
}

/** 系统-samrtbi 服务 */
export interface SmartBIService {

  /** 报表树查询 */
  tree_mark: (params: SmartBITreeMarkParams) => Promise<any>;

  /** 同步数据 */
  clear_sync: () => Promise<any>;

}