ASGoodsDetailsVM.h 756 B

1234567891011121314151617181920212223242526272829
  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. NS_ASSUME_NONNULL_BEGIN
  19. @interface ASGoodsDetailsVM : RYBaseVM
  20. @end
  21. NS_ASSUME_NONNULL_END