ExtraDTO.ts 211 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import { LabelDTO } from './LabelDTO'; import { ItemDTO } from '../../ItemDTO'; // 附加字段集合,不同组件,额外附加参数不同 export interface ExtraDTO extends ItemDTO { labels?: LabelDTO[]; }