import { IPSDELogicLinkCondBase } from './ipsdelogic-link-cond-base'; /** * * 子接口类型识别属性[] * @export * @interface IPSDELogicLinkGroupCondBase */ export interface IPSDELogicLinkGroupCondBase extends IPSDELogicLinkCondBase { /** * 组合条件 * @description 值模式 [组合条件操作] {AND:与(AND)、 OR:或(OR) } * @type {( string | 'AND' | 'OR')} */ groupOP: string | 'AND' | 'OR'; /** * 逻辑取反 * @type {boolean} * @default false */ notMode: boolean; }