CTMediator+Home.h 527 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // CTMediator+Home.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/5.
  6. //
  7. #import <CTMediator/CTMediator.h>
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CTMediator (Home)
  11. -(UIViewController *)getHomeVc:(NSDictionary *)params;
  12. /**
  13. params: {
  14. "type":typeId, //String
  15. "title":titleStr,//String
  16. "searchKey":keyword,//String
  17. "secondTime": secondTime,// NSNumber,
  18. "pointGetType":pointGetType,//NSNumber
  19. }
  20. */
  21. -(UIViewController *)getProductListVc:(NSDictionary *)params;
  22. @end
  23. NS_ASSUME_NONNULL_END