| 1234567891011121314151617181920212223242526272829 |
- //
- // PlaceModel.m
- // Haishenghai-master
- //
- // Created by GG on 2019/1/22.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import "PlaceModel.h"
- @implementation PlaceModel
- +(PlaceModel *)parserWithDic:(NSDictionary *)dic
- {
- PlaceModel *info = [[PlaceModel alloc]init];
-
- info.deployment = [dic objectForKey:@"deployment"];
- info.location = [dic objectForKey:@"location"];
- info.Id = [dic objectForKey:@"id"];
- info.regionCode = [dic objectForKey:@"regionCode"];
- info.regionName = [dic objectForKey:@"regionName"];
- info.userid = [dic objectForKey:@"userId"];
-
- info.isTel = [dic objectForKey:@"isTel"];
- info.isMsg = [dic objectForKey:@"isMsg"];
- return info;
-
- }
- @end
|