YRMineModel.h 893 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // YRMineModel.h
  3. // UU_Ent
  4. //
  5. // Created by huangyp-pc on 2019/5/7.
  6. // Copyright © 2019 UAS. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YRMineModel : NSObject
  11. /**
  12. 安卓平台跳转
  13. */
  14. @property(copy,nonatomic)NSString *androidWidget;
  15. /**
  16. 类型编码
  17. */
  18. @property(copy,nonatomic)NSString *id_p;
  19. /**
  20. 图标
  21. */
  22. @property(copy,nonatomic)NSString *icon;
  23. /**
  24. iOS平台跳转
  25. */
  26. @property(copy,nonatomic)NSString *iosWidget;
  27. /**
  28. 名称
  29. */
  30. @property(copy,nonatomic)NSString *name;
  31. /**
  32. 是否初始化
  33. */
  34. @property(assign,nonatomic)NSUInteger initialized;
  35. /**
  36. 跳转的判断,0为原生,1为网页
  37. */
  38. @property(assign,nonatomic)NSUInteger viewType;
  39. /**
  40. 跳转的控制器
  41. */
  42. @property(copy,nonatomic)NSString *desVC;
  43. /**
  44. 网页地址
  45. */
  46. @property(copy,nonatomic)NSString *webURL;
  47. @end
  48. NS_ASSUME_NONNULL_END