12345678910111213141516171819202122232425262728293031323334 |
- //
- // GoodsDetailsVM.h
- // Asteria
- //
- // Created by 王猛 on 2023/5/10.
- //
- #import <WMBase/WMBase.h>
- #import "GoodsInformationM.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface GoodsDetailsVM : UCMHttpRequestBaseVM
- ///获取商品详情
- #define GoodsDetails_productGetProduct @"product/getProduct"
- //获取商品评论图片
- #define GoodsDetails_productGetReviewImg @"product/getReviewImg"
- ///获取商品评论列表
- #define GoodsDetails_productGetReviewList @"product/getReviewList"
- //////根据评论ID点赞
- #define GoodsDetails_productAddThumbsUp @"product/addThumbsUp"
- ///根据评论ID取消点赞
- #define GoodsDetails_productDelThumbsUp @"product/delThumbsUp"
- ///加评论上传图片
- #define WriteReview_indexUploader @"index/uploader"
- ///添加商品评论
- #define WriteReview_productAaddReview @"product/addReview"
- ///商品加购
- #define Cart_CarAdd @"car/add"
- @end
- NS_ASSUME_NONNULL_END
|