1 Star 0 Fork 0

育子/nuciotsdk

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
deviceregistration.go 1.00 KB
Copy Edit Raw Blame History
育子 authored 2021-12-08 23:07 . thingmodel
package models
// 设备注册
type DeviceRegistrationReq struct {
DeviceId string `json:"deviceId"` // 设备编号
DeviceIp string `json:"deviceIp"` // 设备IP
ProductKey string `json:"productKey"` // 产品标识
DeviceType string `json:"deviceType"` // 设备类型
ProtocolVersion string `json:"protocolVersion"` // 协议版本
DeveloperId string `json:"developerId"` // 开发者Id
ModelId string `json:"modelId"` // 模型Id
GlobalId string `json:"globalId"` // 全局Id
IotBase
//RegItems []RegItem `json:"regItems"` // 关联设备注册项
}
// 子设备注册项
type RegItem struct {
SubDeviceIp string `json:"subDeviceIp"` // 子设备IP
SubDeviceType string `json:"subDeviceType"` // 子设备类型
SubDeviceId string `json:"subDeviceId"` // 子设备编号
}
// 设备注册回复
type DeviceRegistrationReply struct {
Message string `json:"message"` // 运行信息内容
IotBase2
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/magicyu90/nuciotsdk.git
git@gitee.com:magicyu90/nuciotsdk.git
magicyu90
nuciotsdk
nuciotsdk
v1.2.0

Search