zy-react-library/components/LeftTree/Department/Gwj/index.d.ts

26 lines
539 B
TypeScript
Raw Normal View History

import type { FC } from "react";
import type { BasicLeftTreeProps } from "../../Basic";
2025-11-04 08:39:32 +08:00
export interface Params {
/** 企业id */
2025-11-04 09:21:21 +08:00
eqCorpinfoId?: string;
2025-11-04 08:39:32 +08:00
/** 父级部门id */
eqParentId?: string;
[key: string]: any;
}
/**
*
*/
export interface DepartmentLeftTreeProps extends Omit<BasicLeftTreeProps, "treeData"> {
/** 请求参数 */
2025-11-04 08:39:32 +08:00
params?: Params;
}
/**
*
*/
declare const DepartmentLeftTree: FC<DepartmentLeftTreeProps>;
export default DepartmentLeftTree;