mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2026-01-26 09:31:22 +00:00
21 lines
500 B
TypeScript
21 lines
500 B
TypeScript
import { EntityModel } from '@midwayjs/orm';
|
|
import { BaseEntity } from '@cool-midway/core';
|
|
import { Column } from 'typeorm';
|
|
|
|
/**
|
|
* 部门
|
|
*/
|
|
@EntityModel('base_sys_department')
|
|
export class BaseSysDepartmentEntity extends BaseEntity {
|
|
@Column({ comment: '部门名称' })
|
|
name: string;
|
|
|
|
@Column({ comment: '上级部门ID', type: 'bigint', nullable: true })
|
|
parentId: number;
|
|
|
|
@Column({ comment: '排序', default: 0 })
|
|
orderNum: number;
|
|
// 父菜单名称
|
|
parentName: string;
|
|
}
|