IdentityData.m 553 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // IdentityData.m
  3. // CParam
  4. //
  5. // Created by breeze on 2017/6/20.
  6. // Copyright © 2017年 Breeze. All rights reserved.
  7. //
  8. #import "IdentityData.h"
  9. @implementation IdentityData
  10. // 初始化函数
  11. - (id)init
  12. {
  13. if(self = [super init])
  14. {
  15. // 初始化数组
  16. _appGID = nil;
  17. _serverID = nil;
  18. _deviceUID = nil;
  19. _appUID = nil;
  20. return self;
  21. }
  22. return nil;
  23. }
  24. // 销毁
  25. - (void)destroy
  26. {
  27. _appGID = nil;
  28. _serverID = nil;
  29. _deviceUID = nil;
  30. _appUID = nil;
  31. }
  32. @end