fix(SelectTree): 修复Department Gwj类型定义遗漏问题

- 在Department Gwj的类型定义中添加了[key: string]: any属性
- 保证对象可支持额外动态字段
- 提升类型定义的灵活性和兼容性
1.0
LiuJiaNan 2026-08-18 16:30:15 +08:00
parent af297ab0a0
commit 4aac4abcbe
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ export interface Params {
inType?: InType[]; inType?: InType[];
/** 企业类型 1-监管 2-企业 3-相关方 */ /** 企业类型 1-监管 2-企业 3-相关方 */
enterpriseType?: EnterpriseType | EnterpriseType[]; enterpriseType?: EnterpriseType | EnterpriseType[];
[key: string]: any;
} }
/** /**