27 lines
546 B
TypeScript
27 lines
546 B
TypeScript
import {BasicPageParams, BasicFetchResult} from '/@/api/model/baseModel';
|
|
|
|
/**
|
|
* @description: RolePermission分页参数 模型
|
|
*/
|
|
export interface RolePermissionPageParams extends BasicPageParams {
|
|
name: string;
|
|
|
|
code: string;
|
|
}
|
|
|
|
/**
|
|
* @description: RolePermission分页返回值模型
|
|
*/
|
|
export interface RolePermissionPageModel {
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
code: string;
|
|
}
|
|
|
|
/**
|
|
* @description: RolePermission分页返回值结构
|
|
*/
|
|
export type RolePermissionPageResult = BasicFetchResult<RolePermissionPageModel>;
|