import { IPSModelObject } from '../../ipsmodel-object'; /** * * 子接口类型识别属性[condType] * @export * @interface IPSDEDQCondition */ export interface IPSDEDQCondition extends IPSModelObject { /** * 条件操作 * @type {string} */ condOp: string; /** * 条件类型 * @description 值模式 [条件类型] {GROUP:组合条件、 SINGLE:属性条件、 CUSTOM:自定义条件、 PREDEFINED:预置条件 } * @type {( string | 'GROUP' | 'SINGLE' | 'CUSTOM' | 'PREDEFINED')} */ condType: string | 'GROUP' | 'SINGLE' | 'CUSTOM' | 'PREDEFINED'; } //# sourceMappingURL=ipsdedqcondition.d.ts.map