SensorDeviceModel.m 687 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // SensorDeviceModel.m
  3. // FunSDKDemo
  4. //
  5. // Created by Megatron on 2019/3/29.
  6. // Copyright © 2019 Megatron. All rights reserved.
  7. //
  8. #import "SensorDeviceModel.h"
  9. @implementation SensorDeviceModel
  10. - (instancetype)init{
  11. self = [super init];
  12. if (self) {
  13. self.ifOnline = NO;
  14. }
  15. return self;
  16. }
  17. - (NSMutableDictionary *)dicListInfo{
  18. if (!_dicListInfo) {
  19. _dicListInfo = [NSMutableDictionary dictionaryWithCapacity:0];
  20. }
  21. return _dicListInfo;
  22. }
  23. - (NSMutableDictionary *)dicStatusInfo{
  24. if (!_dicStatusInfo) {
  25. _dicStatusInfo = [NSMutableDictionary dictionaryWithCapacity:0];
  26. }
  27. return _dicStatusInfo;
  28. }
  29. @end