deveceListModel.h 560 B

123456789101112131415161718192021222324
  1. //
  2. // deveceListModel.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2019/1/22.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface deveceListModel : NSObject
  10. //设备id
  11. @property(nonatomic,copy)NSString *deviceId;
  12. //设备地址
  13. @property(nonatomic,copy)NSString *deviceLocation;
  14. //设备名称
  15. @property(nonatomic,copy)NSString *deviceName;
  16. //设备状态
  17. @property(nonatomic,copy)NSString *troubleType;
  18. +(deveceListModel *)parserWithDic:(NSDictionary *)dic;
  19. @end