mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
14 lines
238 B
TypeScript
14 lines
238 B
TypeScript
/// <reference path="../global.d.ts"/>
|
|
|
|
/* 角色数据库表字段 */
|
|
namespace Entity {
|
|
type RoleType = 'super' | 'admin' | 'user'
|
|
|
|
interface Role {
|
|
/** 用户id */
|
|
id?: number
|
|
/** 用户名 */
|
|
role?: RoleType
|
|
}
|
|
}
|