import { IPSAppDEReport } from './ipsapp-dereport'; import { IPSDEReportItem } from '../../dataentity/report/ipsdereport-item'; /** * * 子接口类型识别属性[] * @export * @interface IPSAppDEReportItem */ export interface IPSAppDEReportItem extends IPSDEReportItem { /** * 关系报表对象 * * @type {IPSAppDEReport} */ getMinorPSAppDEReport(): IPSAppDEReport | null; /** * 关系报表对象 * * @type {IPSAppDEReport} */ get minorPSAppDEReport(): IPSAppDEReport | null; /** * 关系报表对象(必须存在) * * @type {IPSAppDEReport} */ getMinorPSAppDEReportMust(): IPSAppDEReport; }