您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

29 行
732 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_OPReqImport "OPReqImport"
  5. class OPReqImport : public JObject
  6. {
  7. public:
  8. JIntObj Channel;
  9. JIntObj Length;
  10. JStrObj IntelType;
  11. JStrObj Opr;
  12. JIntObj Index;
  13. public:
  14. OPReqImport(JObject *pParent = NULL, const char *szName = JK_OPReqImport):
  15. JObject(pParent,szName),
  16. Channel(this, "Channel"),
  17. Length(this, "Length"),
  18. IntelType(this, "IntelType"),
  19. Index(this, "Index"),
  20. Opr(this, "Opr"){
  21. this->Parse("{\"Name\" : \"OPReqImport\",\"OPReqImport\" : {\"Channel\" : 0,\"Length\" : 0,\"Index\" : 0,\"IntelType\" : \"CarPlate\",\"Opr\" : \"Stop\"},\"SessionID\" : \"0x5a91\"}");
  22. };
  23. ~OPReqImport(void){};
  24. };
  25. NS_NETSDK_CFG_END