RQMenuInfoModel.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // RQMenuInfoModel.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/4/28.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQBaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQMenuInfoModel : RQBaseModel
  11. /// 副标题
  12. @property (nonatomic, readwrite, copy) NSString * MENU_REMARK;
  13. /// 类型 1:H5;2:小程序
  14. @property (nonatomic, readwrite, copy) NSString * MENU_TYPE;
  15. ///
  16. @property (nonatomic, readwrite, copy) NSString * MENU_ANDROID;
  17. ///
  18. @property (nonatomic, readwrite, copy) NSString * MENU_IOS;
  19. ///
  20. @property (nonatomic, readwrite, copy) NSString * MENU_WEB_URL;
  21. /// H5的链接或小程序的username
  22. @property (nonatomic, readwrite, copy) NSString * MENU_URL;
  23. ///
  24. @property (nonatomic, readwrite, copy) NSString * MENU_XCX_URL;
  25. /// 标题
  26. @property (nonatomic, readwrite, copy) NSString * MENU_NAME;
  27. /// 图标地址
  28. @property (nonatomic, readwrite, copy) NSString * MENU_ICON;
  29. @end
  30. NS_ASSUME_NONNULL_END