ItemDTO.ts 358 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * 组件comp/view对应的服务端数据 * DTO 数据传输实体类接口,所有数据传输层数据结构体需实现该接口 */ import { Action } from './Action'; import { Pic } from './Pic'; export interface ItemDTO { action?: Action; // 事件对象 actionId?: string; // 点击事件id pics?: Pic // 图片 h5pics: Pic; // 图片 }