ResponseBean.ets 357 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 import { ContentDetailDTO } from '../detail/ContentDetailDTO'; export interface ResponseBean<T = ContentDetailDTO[]> { success: boolean; // 服务请求响应值/微服务响应状态码” code: number; // 服务请求响应说明 message: string; // 响应结果 data: T // 请求响应时间戳(unix格式) timestamp?: number; }