6 Star 23 Fork 32

王布衣/gotdx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup_cmd2.go 914 Bytes
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-05-07 06:58 . 调整目录结构
package std
import (
"gitee.com/quant1x/gotdx/internal"
)
// SetupCmd2Request 请求包结构
type SetupCmd2Request struct {
Cmd []byte `struc:"[13]byte" json:"cmd"`
}
// Marshal 请求包序列化输出
func (req *SetupCmd2Request) Marshal() ([]byte, error) {
return DefaultMarshal(req)
}
// SetupCmd2Response 响应包结构
type SetupCmd2Response struct {
Unknown []byte `json:"unknown"`
}
func (resp *SetupCmd2Response) Unmarshal(data []byte) error {
resp.Unknown = data
return nil
}
// NewSetupCmd2Request 创建SetupCmd2请求包
func NewSetupCmd2Request() (*SetupCmd2Request, error) {
request := &SetupCmd2Request{
Cmd: internal.HexString2Bytes("0c 02 18 94 00 01 03 00 03 00 0d 00 02"),
}
return request, nil
}
func NewSetupCmd2() (*SetupCmd2Request, *SetupCmd2Response, error) {
var response SetupCmd2Response
var request, err = NewSetupCmd2Request()
return request, &response, err
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/quant1x/gotdx.git
git@gitee.com:quant1x/gotdx.git
quant1x
gotdx
gotdx
v1.14.8

搜索帮助