1234567891011121314151617 |
- //
- // ASGoodsDetailsVM.m
- // Asteria
- //
- // Created by 王猛 on 2023/12/26.
- //
- #import "ASGoodsDetailsVM.h"
- @implementation ASGoodsDetailsVM
- - (void)ry_respnsSucessWithPath:(NSString *)mark data:(id)data{
- if([mark isEqualToString:Goods_productGetProductsById]){
- GoodsInformationM *model = [GoodsInformationM mj_objectWithKeyValues:data];
- [self ry_VMconfigDelegateData:model success:YES mark:mark];
- }
- }
- @end
|