/**
 * 表单设置左侧按钮数据了下
 */
export interface LeftMenuItem {
    key: string;
    title: string;
}
/**
 * 左侧menu数据
 */
export interface FullLeftMenuItem {
    isTitle: boolean;
    children: FullLeftMenuItem[];
    key: string;
    title: string;
    icon: any;
}
/**
 * 权限设置中的操作权限的数据类型
 */
export interface PermissionItem {
    value: string;
    title: string;
}
/**
 * 字段显隐规则类型的数据类型
 * 数组下的数据类型是暂时定义的
 */
export interface FormRuleItem {
    id: string;
    ruleName: string;
    disable?: boolean;
    conditionList: any[];
    showList: any[];
    hideList: any[];
    readList: any[];
    editList: any[];
}
