1234567891011121314151617181920212223242526272829 |
- //
- // CTMediator+Home.h
- // Asteria
- //
- // Created by iOS on 2023/6/5.
- //
- #import <CTMediator/CTMediator.h>
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CTMediator (Home)
- -(UIViewController *)getHomeVc:(NSDictionary *)params;
- /**
- params: {
- "type":typeId, //String
- "title":titleStr,//String
- "searchKey":keyword,//String
- "secondTime": secondTime,// NSNumber,
- "pointGetType":pointGetType,//NSNumber
- }
- */
- -(UIViewController *)getProductListVc:(NSDictionary *)params;
- @end
- NS_ASSUME_NONNULL_END
|