| 1234567891011121314151617181920 |
- //
- // troubleSiteModel.h
- // Haishenghai-master
- //
- // Created by 刘云鸽 on 2019/3/16.
- // Copyright © 2019 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface troubleSiteModel : NSObject
- @property(nonatomic,copy)NSString *siteId;
- @property(nonatomic,copy)NSString *deployment;
- @property(nonatomic,copy)NSString *location;
- @property(nonatomic,copy)NSString *regionName;
- @property(nonatomic,copy)NSString *troubleType;
- +(troubleSiteModel *)parserWithDic:(NSDictionary *)dic;
- @end
|