PageDTO.ets 310 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import { CompDTO } from './CompDTO'; /** * Page数据DTO * 其实是comp接口(display/zh/c/compInfo)返回 */ export interface PageDTO { pageId: string; // 页面id id: number; // 楼层id name: string; // 名称 branchMark: boolean; compList: CompDTO[]; // Components集合的布局信息 }