ExtraDTO.ts 371 Bytes
import { LabelDTO } from './LabelDTO';
import { ItemDTO } from '../../ItemDTO';

// 附加字段集合,不同组件,额外附加参数不同
export interface ExtraDTO extends ItemDTO {
  labels?: LabelDTO[];
  contentId: string;
  contentType: string;
  topicId: string;
  channelId: string;
  compId: string;
  sourcePage: string;
  relId: string;
  relType: string;
}