6 Star 23 Fork 32

王布衣/gotdx

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

搜索帮助