| 123456789101112131415161718192021222324 |
- //
- // deveceListModel.h
- // Haishenghai-master
- //
- // Created by GG on 2019/1/22.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface deveceListModel : NSObject
- //设备id
- @property(nonatomic,copy)NSString *deviceId;
- //设备地址
- @property(nonatomic,copy)NSString *deviceLocation;
- //设备名称
- @property(nonatomic,copy)NSString *deviceName;
- //设备状态
- @property(nonatomic,copy)NSString *troubleType;
- +(deveceListModel *)parserWithDic:(NSDictionary *)dic;
- @end
|