1234567891011121314151617 |
- //
- // Target_Goods.m
- // Asteria
- //
- // Created by 王猛 on 2023/5/8.
- //
- #import "Target_Goods.h"
- #import "AS_GoodsDetailsC.h"
- @implementation Target_Goods
- - (UIViewController *)Action_GoodsDetailsC:(NSDictionary *)params{
- AS_GoodsDetailsC *vc = [[AS_GoodsDetailsC alloc]init];
- vc.entity_id = params[@"AS_GoodsDetailsC"];
- return vc;
- }
- @end
|