RQHTTPService+RQGetMenuInfo.h 410 B

123456789101112131415161718192021
  1. //
  2. // RQHTTPService+RQGetMenuInfo.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/4/28.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQHTTPService.h"
  9. #import "RQMenuInfoModel.h"
  10. /// 获取优惠列表
  11. #define RQ_POST_GetMenuInfo @"student/getMenuInfo"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface RQHTTPService (RQGetMenuInfo)
  14. - (RACSignal *)getMenuInfo;
  15. @end
  16. NS_ASSUME_NONNULL_END