device_net_config.go 425 B

123456789101112131415161718192021
  1. package rpcs
  2. type ArgsCheckDeviceNetConfig struct {
  3. Md5 string `json:"md5"`
  4. DeviceCode string `json:"device_code"`
  5. }
  6. type ReplyCheckDeviceNetConfig struct {
  7. Result bool `json:"result"`
  8. }
  9. type SubDeviceArgs struct {
  10. DeviceCode string `json:"device_code"`
  11. SubDeviceId string `json:"sub_device_id"`
  12. Status int `json:"status"`
  13. }
  14. type ArgsUpdateDeviceVersion struct {
  15. DeviceId string
  16. Version string
  17. }