修改了首页
This commit is contained in:
30
app/api/system/userRole/model/index.ts
Normal file
30
app/api/system/userRole/model/index.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 用户
|
||||
*/
|
||||
export interface UserRole {
|
||||
id?: number;
|
||||
// 用户id
|
||||
userId?: number;
|
||||
// 角色ID
|
||||
roleId?: number;
|
||||
// 创建时间
|
||||
createTime?: string;
|
||||
// 修改时间
|
||||
updateTime?: string;
|
||||
// 角色名称
|
||||
roleName?: string;
|
||||
// 租户ID
|
||||
tenantId?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户搜索条件
|
||||
*/
|
||||
export interface UserRoleParam extends PageParam {
|
||||
keywords?: any;
|
||||
roleId?: number;
|
||||
userId?: number;
|
||||
userIds?: any;
|
||||
}
|
||||
Reference in New Issue
Block a user