GroupDTO.ets 286 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import { CompDTO } from './CompDTO'; /** * 组件列表的body */ export interface GroupDTO { pageId: string; // 页面id id: number; // 楼层id name: string; // 名称 branchMark: boolean; compList: CompDTO[]; // Components集合的布局信息 // compAdList?: any[]; }