ASGoodsDetailsVM.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ASGoodsDetailsVM.h
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2023/12/26.
  6. //
  7. #import "RYBaseVM.h"
  8. #import "GoodsInformationM.h"
  9. #import "GoodsReviewsListM.h"
  10. #define Goods_productGetProductsById BaseRequestrUrl(@"rewrite/product/getProductsById")
  11. #define Goods_productGetProductsReview BaseRequestrUrl(@"rewrite/product/getProductReview")
  12. ///评论点赞
  13. #define Reviews_rewriteProductAddReviewzan BaseRequestrUrl(@"rewrite/product/addReviewzan")
  14. ///添加评论图片
  15. #define Reivews_rewriteProductAddImg BaseRequestrUrl(@"rewrite/product/addImg")
  16. ///添加评论
  17. #define Reviews_rewriteProductAddReview BaseRequestrUrl(@"rewrite/product/addReview")
  18. //加购相关内容
  19. #define Size_rewriteCartAddProducts BaseRequestrUrl(@"rewrite/cart/addProducts")
  20. NS_ASSUME_NONNULL_BEGIN
  21. @interface ASGoodsDetailsVM : RYBaseVM
  22. +(NSMutableAttributedString *)tool_changePriceAtr:(GoodsInformationM *)model;
  23. +(NSMutableAttributedString *)tool_addOptionPrice:(CGFloat)addPrice quantity:(NSInteger)quantity infoMoel:(GoodsInformationM *)mode;
  24. @end
  25. NS_ASSUME_NONNULL_END