import { IPSDEFVRSingleCondition } from './ipsdefvrsingle-condition'; /** * * 继承父接口类型值[STRINGLENGTH] * @export * @interface IPSDEFVRStringLengthCondition */ export interface IPSDEFVRStringLengthCondition extends IPSDEFVRSingleCondition { /** * 最大值 * @type {number} */ maxValue: number; /** * 最小值 * @type {number} */ minValue: number; /** * 含最大值 * @type {boolean} */ includeMaxValue: boolean; /** * 含最小值 * @type {boolean} */ includeMinValue: boolean; }