代码拉取完成,页面将自动刷新
package std
import (
"gitee.com/quant1x/exchange"
"gitee.com/quant1x/gotdx/internal"
)
// SecurityCountRequest 请求包结构
type SecurityCountRequest struct {
Unknown1 []byte `struc:"[12]byte"`
Market exchange.MarketType `struc:"uint16,little" json:"market"`
Unknown2 []byte `struc:"[4]byte"`
}
// Marshal 请求包序列化输出
func (req *SecurityCountRequest) Marshal() ([]byte, error) {
return DefaultMarshal(req)
}
// SecurityCountResponse 响应包结构
type SecurityCountResponse struct {
Count uint `struc:"uint16,little" json:"count"`
}
func (resp *SecurityCountResponse) Unmarshal(data []byte) error {
return DefaultUnmarshal(data, resp)
}
// todo: 检测market是否为合法值
func NewSecurityCountRequest(market exchange.MarketType) (*SecurityCountRequest, error) {
request := &SecurityCountRequest{
Unknown1: internal.HexString2Bytes("0c 0c 18 6c 00 01 08 00 08 00 4e 04"),
Market: market,
Unknown2: internal.HexString2Bytes("75 c7 33 01"),
}
return request, nil
}
func NewSecurityCount(market exchange.MarketType) (*SecurityCountRequest, *SecurityCountResponse, error) {
var response SecurityCountResponse
var request, err = NewSecurityCountRequest(market)
return request, &response, err
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。