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