import { IPSWFLinkCond } from './ipswflink-cond'; /** * * 继承父接口类型值[GROUP] * @export * @interface IPSWFLinkGroupCond */ export interface IPSWFLinkGroupCond extends IPSWFLinkCond { /** * 组合条件 * @description 值模式 [组合条件操作] {AND:与(AND)、 OR:或(OR) } * @type {( string | 'AND' | 'OR')} */ groupOP: string | 'AND' | 'OR'; /** * 子条件集合 * * @type {IPSWFLinkCond[]} */ getPSWFLinkConds(): IPSWFLinkCond[] | null; /** * 子条件集合 * * @type {IPSWFLinkCond[]} */ get psWFLinkConds(): IPSWFLinkCond[] | null; findPSWFLinkCond(objKey: any): IPSWFLinkCond | null; /** * 逻辑取反 * @type {boolean} */ notMode: boolean; }