troubleSiteModel.h 549 B

1234567891011121314151617181920
  1. //
  2. // troubleSiteModel.h
  3. // Haishenghai-master
  4. //
  5. // Created by 刘云鸽 on 2019/3/16.
  6. // Copyright © 2019 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface troubleSiteModel : NSObject
  10. @property(nonatomic,copy)NSString *siteId;
  11. @property(nonatomic,copy)NSString *deployment;
  12. @property(nonatomic,copy)NSString *location;
  13. @property(nonatomic,copy)NSString *regionName;
  14. @property(nonatomic,copy)NSString *troubleType;
  15. +(troubleSiteModel *)parserWithDic:(NSDictionary *)dic;
  16. @end