123456789101112131415161718192021 |
- //
- // RQHTTPService+RQGetMenuInfo.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/4/28.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQHTTPService.h"
- #import "RQMenuInfoModel.h"
- /// 获取优惠列表
- #define RQ_POST_GetMenuInfo @"student/getMenuInfo"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHTTPService (RQGetMenuInfo)
- - (RACSignal *)getMenuInfo;
- @end
- NS_ASSUME_NONNULL_END
|