feat(tsl-api-reference): expand and reorganize api catalog

Flatten builtin pages, add third-party and platform scopes, and import financial and data warehouse references.

Keep the existing generated index without rebuilding after signature normalization.
This commit is contained in:
csh
2026-08-10 18:26:24 +08:00
parent 2938300acb
commit 9010829c6d
1186 changed files with 243901 additions and 219769 deletions
@@ -0,0 +1,73 @@
# 金融 / 基金 / 基金经理
## `fundManagerByEndt()`
声明:function
在任基金经理,与系统参数(基金代码、日期)相关
返回:array
## `fundmanagerid2Funds(managerid)`
声明:function
基金经理ID查询所有管理过的基金,与时间无关
| 参数 | 类型 | 说明 |
| ----------- | ------ | ------------------- |
| `managerid` | string | 字符串,基金经理名称 |
返回:array
### 示例
范例01:返回基金经理ID为3076管理的基金代码列表
```tsl
return FundManagerID2Funds("3067");
// 输出:基金经理ID为3076管理的基金代码列表
```
## `fundmanagerid2Fundsendt(managerid, endt)`
声明:function
指定日基金经理ID查询管理的基金代码列表
| 参数 | 类型 | 说明 |
| ----------- | ------ | ------------------- |
| `managerid` | string | 字符串,基金经理名称 |
| `endt` | date | 日期,截止日期 |
返回:array
### 示例
范例01:调用函数
```tsl
// 返回基金经理ID为3067在20201009日管理的基金列表
return fundmanagerid2Fundsendt("3067", 20201009T);
```
## `fundmanagername2Id(managername)`
声明:function
基金经理名称查询基金经理ID
| 参数 | 类型 | 说明 |
| ------------- | ------ | ------------------- |
| `managername` | string | 字符串,基金经理名称 |
返回:array
### 示例
范例01:返回基金经理名称对应的基金经理ID号
```tsl
return FundsManagerName2ID("刘朝阳");
// 输出:基金经理名称对应的基金经理ID号
```