Target_Home.h 523 B

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