import { http } from "@/utils/http"; export interface ConfigQuery extends BasePageQuery { /** * 配置key */ configKey?: string; /** * 配置名称 */ configName?: string; /** * 是否允许更改配置 */ isAllowChange?: string; } /** * ConfigDTO, 配置信息 */ export interface ConfigDTO { configId?: string; configKey?: string; configName?: string; configOptions?: string[]; configValue?: string; createTime?: Date; isAllowChange?: string; isAllowChangeStr?: string; remark?: string; } /** * ConfigUpdateCommand */ export interface UpdateConfigRequest { configValue: string; } /** 获取配置列表 */ export const getConfigListApi = (params?: ConfigQuery) => { return http.request>>( "get", "/system/configs", { params } ); }; /** 获取配置信息 */ export const getConfigInfoApi = (configId: string) => { return http.request>( "get", `/system/config/${configId}` ); }; /** 刷新配置缓存 */ export const updateConfigApi = ( configId: number, data: UpdateConfigRequest ) => { return http.request>>( "put", `/system/config/${configId}`, { data } ); }; /** 刷新配置缓存 */ export const refreshConfigCacheApi = () => { return http.request>("delete", "/system/configs/cache"); };