ItemDTO.ts 308 Bytes
import { Action } from './Action';

/**
 * 组件comp/view对应的服务端数据
 * DTO 数据传输实体类接口,所有数据传输层数据结构体需实现该接口
 */
export interface ItemDTO {
  action?: Action; // 事件对象
  actionId?: string; // 点击事件id
  // pics?: Pic // 图片
}