12345678910111213141516171819202122232425262728293031323334 |
- //
- // RQMenuInfoModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/4/28.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQBaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQMenuInfoModel : RQBaseModel
- /// 副标题
- @property (nonatomic, readwrite, copy) NSString * MENU_REMARK;
- /// 类型 1:H5;2:小程序
- @property (nonatomic, readwrite, copy) NSString * MENU_TYPE;
- ///
- @property (nonatomic, readwrite, copy) NSString * MENU_ANDROID;
- ///
- @property (nonatomic, readwrite, copy) NSString * MENU_IOS;
- ///
- @property (nonatomic, readwrite, copy) NSString * MENU_WEB_URL;
- /// H5的链接或小程序的username
- @property (nonatomic, readwrite, copy) NSString * MENU_URL;
- ///
- @property (nonatomic, readwrite, copy) NSString * MENU_XCX_URL;
- /// 标题
- @property (nonatomic, readwrite, copy) NSString * MENU_NAME;
- /// 图标地址
- @property (nonatomic, readwrite, copy) NSString * MENU_ICON;
- @end
- NS_ASSUME_NONNULL_END
|