import { TagTypeEnum, StatusEnum } from 'nsn-enum';
import { NEntity } from "../core";

/** 系统-标签 */
export interface Tags extends NEntity {

  /** 标签类型 */
  type: TagTypeEnum;

  /** 标签名称 */
  label: string;

  /** 引用主键 */
  targetId: string;

  /** 引用类型 */
  targetType: string;

  /** 状态 */
  status: StatusEnum;
}
