| 1234567891011121314151617181920212223 |
- //
- // troubleSiteModel.m
- // Haishenghai-master
- //
- // Created by 刘云鸽 on 2019/3/16.
- // Copyright © 2019 Haishenghai intelligence network technology. All rights reserved.
- //
- #import "troubleSiteModel.h"
- @implementation troubleSiteModel
- +(troubleSiteModel *)parserWithDic:(NSDictionary *)dic{
- troubleSiteModel *info = [[troubleSiteModel alloc]init];
- info.regionName = [dic objectForKey:@"regionName"];
- info.location = [dic objectForKey:@"location"];
- info.troubleType = [dic objectForKey:@"troubleType"];
- info.siteId = [dic objectForKey:@"siteId"];
- info.deployment = [dic objectForKey:@"deployment"];
- return info;
- }
- @end
|