mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
16 lines
282 B
TypeScript
16 lines
282 B
TypeScript
/// <reference path="../global.d.ts"/>
|
|
|
|
/* 角色数据库表字段 */
|
|
namespace Entity {
|
|
interface DemoList {
|
|
id: number
|
|
name: string
|
|
age: number
|
|
gender: '0' | '1' | null
|
|
email: string
|
|
address: string
|
|
role: Entity.RoleType
|
|
disabled: boolean
|
|
}
|
|
}
|