import { IPSAppDEReport } from '../../app/dataentity/ipsapp-dereport'; import { IPSControl } from '../ipscontrol'; /** * * 子接口类型识别属性[] * 继承父接口类型值[REPORTPANEL] * @export * @interface IPSDEReportPanel */ export interface IPSDEReportPanel extends IPSControl { /** * 应用实体报表对象 * * @type {IPSAppDEReport} */ getPSAppDEReport(): IPSAppDEReport | null; /** * 应用实体报表对象 * * @type {IPSAppDEReport} */ get psAppDEReport(): IPSAppDEReport | null; /** * 应用实体报表对象(必须存在) * * @type {IPSAppDEReport} */ getPSAppDEReportMust(): IPSAppDEReport; }