Target_Goods.m 356 B

1234567891011121314151617
  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. @implementation Target_Goods
  10. - (UIViewController *)Action_GoodsDetailsC:(NSDictionary *)params{
  11. AS_GoodsDetailsC *vc = [[AS_GoodsDetailsC alloc]init];
  12. vc.entity_id = params[@"AS_GoodsDetailsC"];
  13. return vc;
  14. }
  15. @end