import { IPSDEFDLogic } from './ipsdefdlogic'; /** * * 继承父接口类型值[SINGLE] * @export * @interface IPSDEFDSingleLogic */ export interface IPSDEFDSingleLogic extends IPSDEFDLogic { /** * 条件操作 * @type {string} */ condOP: string; /** * 表单项名称 * @type {string} */ dEFDName: string; /** * 条件值 * @type {string} */ value: string; }