|
@@ -22,7 +22,7 @@ import java.util.List;
|
|
|
* @author : Charles
|
|
|
* @date : 2021/4/9
|
|
|
*/
|
|
|
-@Api(tags="商品价格API(注意:supplierId更改为shopId)")
|
|
|
+@Api(tags="商品价格API")
|
|
|
@RestController
|
|
|
@RequiredArgsConstructor
|
|
|
@RequestMapping("/commodity/price")
|
|
@@ -35,7 +35,7 @@ public class ProductPriceApi {
|
|
|
* @param userId 用户Id
|
|
|
* @param productId 商品Id
|
|
|
*/
|
|
|
- @ApiOperation("获取商品详情价格(旧:/product/detail/price)")
|
|
|
+ @ApiOperation("获取商品详情价格(旧:/product/detail/price)(注意:supplierId更改为shopId)")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(required = true, name = "userId", value = "用户Id"),
|
|
|
@ApiImplicitParam(required = true, name = "productId", value = "商品Id")
|
|
@@ -54,7 +54,7 @@ public class ProductPriceApi {
|
|
|
* @param userId 用户Id
|
|
|
* @param productIds 商品Id
|
|
|
*/
|
|
|
- @ApiOperation("获取商品列表价格(旧:/product/listPrice)")
|
|
|
+ @ApiOperation("获取商品列表价格(旧:/product/listPrice)(注意:supplierId更改为shopId)")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(required = true, name = "userId", value = "用户Id"),
|
|
|
@ApiImplicitParam(required = true, name = "productIds", value = "商品Ids,逗号拼接")
|
|
@@ -72,7 +72,7 @@ public class ProductPriceApi {
|
|
|
*
|
|
|
* @param productId 商品Id
|
|
|
*/
|
|
|
- @ApiOperation("获取阶梯价格(旧:/product/ladderPrice)")
|
|
|
+ @ApiOperation("获取阶梯价格(旧:/product/ladderPrice)(注意:supplierId更改为shopId)")
|
|
|
@ApiImplicitParam(required = true, name = "productId", value = "商品Id")
|
|
|
@GetMapping("/ladder")
|
|
|
public ResponseJson<List<LadderPriceVo>> getLadderPrice(Integer productId) {
|