import { IPSDEDRBarGroup } from './ipsdedrbar-group'; import { IPSDEDRCtrl } from './ipsdedrctrl'; import { IPSDRBar } from './ipsdrbar'; /** * * 子接口类型识别属性[] * 继承父接口类型值[DRBAR] * @export * @interface IPSDEDRBar */ export interface IPSDEDRBar extends IPSDRBar, IPSDEDRCtrl { /** * 实体数据关系栏分组集合 * * @type {IPSDEDRBarGroup[]} */ getPSDEDRBarGroups(): IPSDEDRBarGroup[] | null; /** * 实体数据关系栏分组集合 * * @type {IPSDEDRBarGroup[]} */ get psDEDRBarGroups(): IPSDEDRBarGroup[] | null; findPSDEDRBarGroup(objKey: any): IPSDEDRBarGroup | null; } //# sourceMappingURL=ipsdedrbar.d.ts.map