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
524 B
25 lines
524 B
/** |
|
* @program: kicc-ui |
|
* @description: 角色实体类 |
|
* 类型定义 |
|
* @author: wangxiang4 |
|
* @create: 2022/4/8 |
|
*/ |
|
import type { R } from '/#/axios'; |
|
import type { CommonEntity, Page } from '/@/api/common/data/entity'; |
|
|
|
/** 角色查询参数 */ |
|
export type RoleParams = Page & Role; |
|
|
|
/** 角色对象 */ |
|
export interface Role extends CommonEntity { |
|
id: string; |
|
name: string; |
|
code: string; |
|
sort: string; |
|
status: string; |
|
[key: string]: any; |
|
} |
|
|
|
/** 角色响应对象 */ |
|
export type RoleResult = R<Role[]>;
|
|
|