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

28 lines
625 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import type { FC } from "react";
import type { BasicSelectTreeProps } from "../../Basic";
/**
* 请求参数
*/
export interface Params {
/** 企业id */
eqCorpinfoId?: string;
}
/**
* 组件属性
*/
export interface HiddenPartSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "nameKey" | "idKey" | "childrenKey"> {
/** 请求参数 */
params?: Params;
/** 是否需要企业id默认 false */
isNeedCorpInfoId?: boolean;
}
/**
* 隐患部位下拉树组件(港务局版本)
*/
declare const HiddenPartSelectTree: FC<HiddenPartSelectTreeProps>;
export default HiddenPartSelectTree;