| | |
| | | package com.hz.his.feign.service.phis; |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.activity.ActivityLimitDto; |
| | | import com.hz.his.dto.order.OrderDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | * 根据商品id查询订单数量 |
| | | */ |
| | | @PostMapping(value = "/order/numByGoodsId") |
| | | Result queryOrderNumByGoodsId(@RequestParam("goodsId") String goodsId); |
| | | Result queryOrderNumByGoodsId(@RequestBody ActivityLimitDto activityLimitDto); |
| | | |
| | | /** |
| | | * 根据活动id查询订单数量 |
| | | */ |
| | | @PostMapping(value = "/order/numByActivityId") |
| | | Result queryOrderNumByActivityId(@RequestParam("activityId") String activityId); |
| | | Result queryOrderNumByActivityId(@RequestBody ActivityLimitDto activityLimitDto); |
| | | |
| | | /** |
| | | * 订单列表 |