H5ReceiveDataJsonBean.ets 277 Bytes
import { ResponseBean } from './ResponseBean';

export interface H5ReceiveDataJsonBean<T = ResponseBean> {
  contentId?: string;
  contentType?: string;
  topicId?: string;
  channelId?: string;
  compId?: string;
  sourcePage?: string;
  netError: string;
  responseMap: T;

}