device_net_config.go 350 B

12345678910111213141516
  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. }