| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // YRMineModel.h
- // UU_Ent
- //
- // Created by huangyp-pc on 2019/5/7.
- // Copyright © 2019 UAS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YRMineModel : NSObject
- /**
- 安卓平台跳转
- */
- @property(copy,nonatomic)NSString *androidWidget;
- /**
- 类型编码
- */
- @property(copy,nonatomic)NSString *id_p;
- /**
- 图标
- */
- @property(copy,nonatomic)NSString *icon;
- /**
- iOS平台跳转
- */
- @property(copy,nonatomic)NSString *iosWidget;
- /**
- 名称
- */
- @property(copy,nonatomic)NSString *name;
- /**
- 是否初始化
- */
- @property(assign,nonatomic)NSUInteger initialized;
- /**
- 跳转的判断,0为原生,1为网页
- */
- @property(assign,nonatomic)NSUInteger viewType;
- /**
- 跳转的控制器
- */
- @property(copy,nonatomic)NSString *desVC;
- /**
- 网页地址
- */
- @property(copy,nonatomic)NSString *webURL;
- @end
- NS_ASSUME_NONNULL_END
|