- 接口地址: http://域名/outdata/v1/symbol/pool/list
```
type ReqSymbolPoolAdd struct {
PoolID string //自定義版塊ID 靜態版塊前綴(ILS-),動態版塊前綴(ILD-)
PoolSymbol string //股票代碼(多個股票代碼用逗號分隔)
PoolDate int64 //日期 (格式:20060102) 靜態版塊不用輸入, 動態版塊每一天都要輸入
PoolWeight string //權重(按股票順序用逗號拼接權重數值)(數值放大10000倍)(不傳默認空代表等權重)
}
type RspSymbolPoolList struct {
Code int //狀態碼 (20000 添加成功, 非20000 添加失敗)
Message string //錯誤消息內容
Data []db.PullCustomSection
}
type PullCustomSection struct {
PoolID string `gorm:"column:PoolID;type:varchar" json:"poolId"` //自定義版塊ID
PoolSymbol string `gorm:"column:PoolSymbol;type:varchar" json:"poolsymbol"` //股票代碼(多個股票代碼用逗號分隔)
PoolDate int64 `gorm:"column:PoolDate;type:int8" json:"pooldate"` //日期 (格式:20060102) 靜態版塊不會返回此參數
PoolWeight string `gorm:"column:PoolWeight;type:varchar;default:'';not null;" json:"poolweight,omitempty"` //權重(按股票順序用逗號拼接權重數值)(數值放大10000倍)(不傳默認空代表等權重)
}
```