import { ElementPathGenerateType } from '../Element/ElementPathGenerateType'; /** * 分级信息 * @author wangjiegj */ /** * 分级信息 */ export declare class GSPHirarchyInfo { /** * 分级码(前端仅存字段ID) */ PathElement: string; /** * 分级码步长(前端仅存字段ID) */ PathLength: number; /** * 级数(前端仅存字段ID) */ LayerElement: string; /** * 是否明细(前端仅存字段ID) */ IsDetailElement: string; /** * 父路径(前端仅存字段ID) */ ParentElement: string; /** * 分级信息生成时机 */ PathGenerateType: ElementPathGenerateType; }