GroupDTO.ets 286 Bytes
import { CompDTO } from './CompDTO';

/**
 * 组件列表的body
 */
export interface GroupDTO {
  pageId: string; // 页面id
  id: number; // 楼层id
  name: string; // 名称
  branchMark: boolean;
  compList: CompDTO[]; // Components集合的布局信息
  // compAdList?: any[];
}