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