GroupDataDTO.ts 288 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 /** * 对应服务器返回的group数据 */ import { CompDataDTO } from './CompDataDTO'; import { ItemDTO } from './ItemDTO'; export interface GroupDataDTO extends ItemDTO { id: string; // Group主键ID name: string; // 名称 branchMark: boolean; components: CompDataDTO[]; }