📦 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,57 @@
# 金融报表分析 / 01.个股 / 1.12募集资金
## `tsWeb_stock_ipoGetData(stock_id, industry_type)`
声明:function
返回指定股票的发行上市基本信息
<!-- tags: 金融报表分析 01. 个股 1.12 募集资金 返回 获取 金融 报表 报告期 -->
| 参数 | 类型 | 说明 |
| --------------- | ------- | ------------------------- |
| `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
返回指定股票同行业的上市信息
<!-- tags: 金融报表分析 01. 个股 1.12 募集资金 返回 获取 金融 报表 报告期 -->
| 参数 | 类型 | 说明 |
| --------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `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)同行业的上市信息
```