| 12345678910111213141516171819202122232425 |
- //
- // deveceListModel.m
- // Haishenghai-master
- //
- // Created by GG on 2019/1/22.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import "deveceListModel.h"
- @implementation deveceListModel
- +(deveceListModel *)parserWithDic:(NSDictionary *)dic
- {
- deveceListModel *info = [[deveceListModel alloc]init];
-
- info.deviceId = [dic objectForKey:@"deviceId"];
- info.deviceLocation = [dic objectForKey:@"deviceLocation"];
- info.deviceName = [dic objectForKey:@"deviceName"];
- info.troubleType = [dic objectForKey:@"troubleType"];
-
- return info;
-
- }
- @end
|