5 lines
65 B
TypeScript
5 lines
65 B
TypeScript
|
export interface IDepart {
|
||
|
id?: number,
|
||
|
parentId?: number,
|
||
|
}
|