代码拉取完成,页面将自动刷新
package danling
type Client interface {
RegisterDetonator(projects ...XpxxProjectInfo) (code int, err error)
UploadQbrz(projects ...QbrzxxProjectInfo) (code int, err error)
RegisterQbq(projects ...QbqProjectInfo) (code int, err error)
RegisterUid(projects ...LshUidProjectInfo) (code int, err error)
}
type Req struct {
Xpch string `json:"xpch,omitempty"` // 芯片厂号
Projects []any `json:"projectInfo,omitempty"` // 数据集合 自行去重, 最大1000
}
type Resp struct {
Message string `json:"msg,omitempty"`
Success string `json:"success,omitempty"`
}
type client struct {
host string
desKey []byte
xpch string
}
type Qualified string // 结论
const (
Pass Qualified = "0"
Fail = "1"
)
type QbCheckType string
const (
Low QbCheckType = "0"
High = "1"
)
func New(host string, desKey []byte, xpch string) Client {
var c = &client{host: host, desKey: desKey, xpch: xpch}
var h Client = c
return h
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。