refactor: 适配系统参数 API 新的使用方式

This commit is contained in:
2024-05-28 23:12:24 +08:00
parent 45cbabf545
commit 1909b6e907
4 changed files with 8 additions and 6 deletions

View File

@@ -263,6 +263,7 @@ export interface StoragePageQuery extends StorageQuery, PageQuery {
/** 系统参数类型 */
export interface OptionResp {
id: string
name: string
code: string
value: string
@@ -270,7 +271,8 @@ export interface OptionResp {
}
export interface OptionQuery {
code: Array<string>
code?: Array<string>
category?: string
}
/** 基础配置类型 */