6 Star 23 Fork 32

王布衣/gotdx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup_cmd3.go 1014 Bytes
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-03-11 09:43 . 调整旧版本的包路径
package std
import (
"gitee.com/quant1x/gotdx/util"
)
// SetupCmd3Request 请求包结构
type SetupCmd3Request struct {
Cmd []byte `struc:"[42]byte" json:"cmd"`
}
// Marshal 请求包序列化输出
func (req *SetupCmd3Request) Marshal() ([]byte, error) {
return DefaultMarshal(req)
}
// SetupCmd3Response 响应包结构
type SetupCmd3Response struct {
Unknown []byte `json:"unknown"`
}
func (resp *SetupCmd3Response) Unmarshal(data []byte) error {
resp.Unknown = data
return nil
}
// NewSetupCmd3Request 创建SetupCmd3请求包
func NewSetupCmd3Request() (*SetupCmd3Request, error) {
request := &SetupCmd3Request{
Cmd: util.HexString2Bytes("0c 03 18 99 00 01 20 00 20 00 db 0f d5" +
"d0 c9 cc d6 a4 a8 af 00 00 00 8f c2 25" +
"40 13 00 00 d5 00 c9 cc bd f0 d7 ea 00" +
"00 00 02"),
}
return request, nil
}
func NewSetupCmd3() (*SetupCmd3Request, *SetupCmd3Response, error) {
var response SetupCmd3Response
var request, err = NewSetupCmd3Request()
return request, &response, err
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/quant1x/gotdx.git
git@gitee.com:quant1x/gotdx.git
quant1x
gotdx
gotdx
v1.5.5

搜索帮助