Target_Goods.m 589 B

123456789101112131415161718192021222324
  1. //
  2. // Target_Goods.m
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2023/5/8.
  6. //
  7. #import "Target_Goods.h"
  8. #import "AS_GoodsDetailsC.h"
  9. #import "AS_GoodsSizeC.h"
  10. @implementation Target_Goods
  11. - (UIViewController *)Action_AS_GoodsDetailsC:(NSDictionary *)params{
  12. AS_GoodsDetailsC *vc = [[AS_GoodsDetailsC alloc]init];
  13. vc.entity_id = params[@"entity_id"];
  14. return vc;
  15. }
  16. - (UIViewController *)Action_AS_GoodsSizeC:(NSDictionary *)params{
  17. AS_GoodsSizeC *vc = [[AS_GoodsSizeC alloc]init];
  18. vc.entity_id = params[@"entity_id"];
  19. vc.model = params[@"model"];
  20. return vc;
  21. }
  22. @end