📦 deps(tsl): sync tsl-playbook from a71480a4

Source-Commit: a71480a4ae
This commit is contained in:
ci[bot]
2026-08-12 08:38:08 +08:00
parent 683f83d17c
commit 670ba950a6
1496 changed files with 292667 additions and 220122 deletions
@@ -0,0 +1,81 @@
# 金融 / 基金 / 基金经理
## `fundManagerByEndt()`
声明:function
返回在任基金经理,与系统参数(基金代码、日期)相关
<!-- tags: 金融 基金 基金经理 返回 获取 -->
返回:array
## `fundmanagerid2Funds(managerid)`
声明:function
返回基金经理ID查询所有管理过的基金,与时间无关
<!-- tags: 金融 基金 基金经理 返回 获取 ID -->
| 参数 | 类型 | 说明 |
| ----------- | ------ | ------------------- |
| `managerid` | string | 字符串,基金经理名称 |
返回:array
### 示例
范例01:返回基金经理ID为3076管理的基金代码列表
```tsl
return FundManagerID2Funds("3067");
// 输出:基金经理ID为3076管理的基金代码列表
```
## `fundmanagerid2Fundsendt(managerid, endt)`
声明:function
返回指定日基金经理ID查询管理的基金代码列表
<!-- tags: 金融 基金 基金经理 返回 获取 ID -->
| 参数 | 类型 | 说明 |
| ----------- | ------ | ------------------- |
| `managerid` | string | 字符串,基金经理名称 |
| `endt` | date | 日期,截止日期 |
返回:array
### 示例
范例01:调用函数
```tsl
// 返回基金经理ID为3067在20201009日管理的基金列表
return fundmanagerid2Fundsendt("3067", 20201009T);
```
## `fundmanagername2Id(managername)`
声明:function
返回基金经理名称查询基金经理ID
<!-- tags: 金融 基金 基金经理 返回 获取 ID -->
| 参数 | 类型 | 说明 |
| ------------- | ------ | ------------------- |
| `managername` | string | 字符串,基金经理名称 |
返回:array
### 示例
范例01:返回基金经理名称对应的基金经理ID号
```tsl
return FundsManagerName2ID("刘朝阳");
// 输出:基金经理名称对应的基金经理ID号
```