import { IPSDEFVRCondition } from './ipsdefvrcondition'; /** * * 继承父接口类型值[GROUP] * @export * @interface IPSDEFVRGroupCondition */ export interface IPSDEFVRGroupCondition extends IPSDEFVRCondition { /** * 组合条件操作 * @description 值模式 [组合条件操作] {AND:与(AND)、 OR:或(OR) } * @type {( string | 'AND' | 'OR')} */ condOp: string | 'AND' | 'OR'; /** * 子条件集合 * * @type {IPSDEFVRCondition[]} */ getPSDEFVRConditions(): IPSDEFVRCondition[] | null; /** * 子条件集合 * * @type {IPSDEFVRCondition[]} */ get psDEFVRConditions(): IPSDEFVRCondition[] | null; findPSDEFVRCondition(objKey: any): IPSDEFVRCondition | null; }