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,53 @@
# 金融报表分析 / 01.个股 / 1.12募集资金
## `tsWeb_stock_ipoGetData(stock_id, industry_type)`
声明:function
返回指定股票的发行上市基本信息
| 参数 | 类型 | 说明 |
| --------------- | ------- | ------------------------- |
| `stock_id` | string | 字符串。证券代码 |
| `industry_type` | integer | 整型。所属行业,取值如下: |
返回:array
### 示例
范例01:返回中证一级行业华能水电(SH600025)的发行上市基本信息
```tsl
IndustryType := 4;
StockID := "SH600025";
return TSWEB_Stock_IPOGetData(StockID, IndustryType);
// 输出:中证一级行业华能水电(SH600025)的发行上市基本信息
```
## `tsWeb_stock_ipoGetDataAndCompare(stock_id, industry_type)`
声明:function
返回指定股票同行业的上市信息
| 参数 | 类型 | 说明 |
| --------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `stock_id` | string | 字符串。证券代码 |
| `industry_type` | integer | 整型。所属行业,取值如下: 显示名 取值 申万一级行业 1 申万二级行业 2 申万三级行业 3 中证一级行业 4 中证二级行业 5 中证三级行业 6 证监会一级行业 7 证监会二级行业 8 |
返回:array
### 示例
范例01:返回申万一级行业华能水电(SH600025)同行业的上市信息
```tsl
IndustryType := 1;
StockID := "SH600025";
return TSWEB_Stock_IPOGetDataAndCompare(StockID, IndustryType);
// 输出:申万一级行业华能水电(SH600025)同行业的上市信息
```