ASGoodsDetailsVM.m 435 B

1234567891011121314151617
  1. //
  2. // ASGoodsDetailsVM.m
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2023/12/26.
  6. //
  7. #import "ASGoodsDetailsVM.h"
  8. @implementation ASGoodsDetailsVM
  9. - (void)ry_respnsSucessWithPath:(NSString *)mark data:(id)data{
  10. if([mark isEqualToString:Goods_productGetProductsById]){
  11. GoodsInformationM *model = [GoodsInformationM mj_objectWithKeyValues:data];
  12. [self ry_VMconfigDelegateData:model success:YES mark:mark];
  13. }
  14. }
  15. @end