You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
550 B
25 lines
550 B
/** |
|
* @program: kicc-ui |
|
* @description: 配置实体类 |
|
* 类型定义 |
|
* @author: entfrm开发团队-王翔 |
|
* @create: 2022/4/8 |
|
*/ |
|
import { R } from '/#/axios'; |
|
import { CommonEntity, Page } from '/@/api/common/data/entity'; |
|
|
|
/** 配置查询参数 */ |
|
export type ConfigParams = Page & Config; |
|
|
|
/** 配置对象 */ |
|
export interface Config extends CommonEntity { |
|
id: string; |
|
name: string; |
|
key: string; |
|
value: string; |
|
isSys: string; |
|
[key: string]: any; |
|
} |
|
|
|
/** 配置响应对象 */ |
|
export type ConfigResult = R<Config[]>;
|
|
|