feat(tsl-api-reference): update API catalog and data dictionary

This commit is contained in:
csh
2026-08-11 18:10:24 +08:00
parent 34a3a5dec1
commit 7bd965de89
1231 changed files with 64187 additions and 18822 deletions
@@ -0,0 +1,39 @@
# 天软数据字典 / 新三板 / 新三板做市商
类型:table
## 表信息
| 项目 | 内容 |
| --- | --- |
| 表名 | 新三板.新三板做市商 |
| 表 ID | 741 |
| 提取方式 | InfoArray |
| 访问代码 | 新三板代码,例如:NE430014 |
| 范围 | neeq |
## 字段
| 字段 ID | 字段名 | 类型 | 中文名 | 单位 | 说明 | 对应 API |
| --- | --- | --- | --- | --- | --- | --- |
| 741001 | 做市商简称 | Char | 做市商简称 | | | |
| 741002 | 做市商全称 | Char | 做市商全称 | | | |
| 741003 | 加入日期 | Integer | 加入日期 | | | |
| 741004 | 退出日期 | Integer | 退出日期 | | | |
## 数据说明
- 1、数据开始时间:上市以来
- 2、数据更新频率:不定期
## 取数示例
范例01:提取恒业世纪 NE430014 的转让方式
```tsl
// 提取恒业世纪 NE430014 的转让方式
stockid:="NE430014";
data:=select * from infotable 741 of stockid end;
if istable(data) then return data;
return array();
```