123456789101112131415161718192021 |
- package rpcs
- type ArgsCheckDeviceNetConfig struct {
- Md5 string `json:"md5"`
- DeviceCode string `json:"device_code"`
- }
- type ReplyCheckDeviceNetConfig struct {
- Result bool `json:"result"`
- }
- type SubDeviceArgs struct {
- DeviceCode string `json:"device_code"`
- SubDeviceId string `json:"sub_device_id"`
- Status int `json:"status"`
- }
- type ArgsUpdateDeviceVersion struct {
- DeviceId string
- Version string
- }
|