zy-react-library/components/SelectTree/HiddenPart/Gwj/index.d.ts

28 lines
625 B
TypeScript
Raw Permalink Normal View History

2025-11-11 16:02:50 +08:00
import type { FC } from "react";
import type { BasicSelectTreeProps } from "../../Basic";
2025-11-11 16:41:40 +08:00
/**
*
*/
export interface Params {
/** 企业id */
eqCorpinfoId?: string;
}
2025-11-11 16:02:50 +08:00
/**
*
*/
export interface HiddenPartSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "nameKey" | "idKey" | "childrenKey"> {
2025-11-11 16:41:40 +08:00
/** 请求参数 */
params?: Params;
/** 是否需要企业id默认 false */
isNeedCorpInfoId?: boolean;
2025-11-11 16:02:50 +08:00
}
/**
*
*/
declare const HiddenPartSelectTree: FC<HiddenPartSelectTreeProps>;
export default HiddenPartSelectTree;