nsn-entity
Version:
NSN实体组件
33 lines (23 loc) • 500 B
TypeScript
import { StatusEnum } from 'nsn-enum';
import { NEntity } from '../core';
/** 系统-部门 */
export interface Dept extends NEntity {
/** 父级 */
parentId: string;
/** 部门名称 */
name: string;
/** 部门编码 */
code: string;
/** 部门类型 */
type: string;
/** 部门负责人 */
leaderId: string;
/** 联系电话 */
telephone: string;
/** 拼音编码 */
pinyin: string;
/** 五笔编码 */
wubi: string;
/** 状态 */
status: StatusEnum;
}