NetWork_Wifi.h 931 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #pragma once
  2. #import "FunSDK/FunSDK.h"
  3. #define JK_NetWork_Wifi "NetWork.Wifi"
  4. class NetWork_Wifi : public JObject
  5. {
  6. public:
  7. JStrObj Auth; //加密方式
  8. JIntObj Channel; //通道号
  9. JBoolObj Enable; //使能开关
  10. JStrObj EncrypType; //加密算法
  11. JStrObj GateWay; // 网关
  12. JStrObj HostIP; // IP
  13. JIntObj KeyType; // 密匙保存方式
  14. JStrObj Keys; // 密码
  15. JStrObj NetType; //网络类型
  16. JStrObj SSID; //Wi-Fi名称
  17. JStrObj Submask; //子网掩码
  18. public:
  19. NetWork_Wifi(JObject *pParent = NULL, const char *szName = JK_NetWork_Wifi):
  20. JObject(pParent,szName),
  21. Auth(this, "Auth"),
  22. Channel(this, "Channel"),
  23. Enable(this, "Enable"),
  24. EncrypType(this, "EncrypType"),
  25. GateWay(this, "GateWay"),
  26. HostIP(this, "HostIP"),
  27. KeyType(this, "KeyType"),
  28. Keys(this, "Keys"),
  29. NetType(this, "NetType"),
  30. SSID(this, "SSID"),
  31. Submask(this, "Submask"){
  32. };
  33. ~NetWork_Wifi(void){};
  34. };