mirror of https://github.com/fantasticit/think.git
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
|
import { IUser } from './user';
|
||
|
/**
|
||
|
* 组织数据定义
|
||
|
*/
|
||
|
export interface IOrganization {
|
||
|
id: string;
|
||
|
name: string;
|
||
|
description: string;
|
||
|
logo: string;
|
||
|
createUserId: IUser['id'];
|
||
|
isPersonal: boolean;
|
||
|
}
|