| 123456789101112131415161718192021222324 |
- //
- // deveceModel.m
- // Haishenghai-master
- //
- // Created by GG on 2019/1/21.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import "deveceModel.h"
- @implementation deveceModel
- +(deveceModel *)parserWithDic:(NSDictionary *)dic
- {
- deveceModel *info = [[deveceModel alloc]init];
-
- info.groupName = [dic objectForKey:@"groupname"];
- info.ID = [dic objectForKey:@"id"];
- info.group_id = [dic objectForKey:@"devgroupid"];
- info.filePath = [dic objectForKey:@"filepath"];
- return info;
-
- }
- @end
|