/** * 枚举 * @author wangjiegj */ /** * 枚举 */ export declare class GSPEnumValue { /** * 值 */ Value: string; /** * 名称 */ Name: string; /** * 索引 */ Index: number; /** * 字符串索引 */ StringIndex: string; /** * 是否默认值 */ IsDefaultEnum: boolean; /** * 枚举项禁用 */ EnumItemDisabled: boolean; }