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.
26 lines
413 B
26 lines
413 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 角色
|
|
*/
|
|
export interface Role {
|
|
// 角色id
|
|
roleId?: number;
|
|
// 角色标识
|
|
roleCode?: string;
|
|
// 角色名称
|
|
roleName?: string;
|
|
// 备注
|
|
comments?: string;
|
|
// 创建时间
|
|
createTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 角色搜索条件
|
|
*/
|
|
export interface RoleParam extends PageParam {
|
|
roleName?: string;
|
|
roleCode?: string;
|
|
comments?: string;
|
|
}
|