| | |
| | | import com.ruoyi.system.api.domain.dto.MgtBasePlatformDto; |
| | | import com.ruoyi.system.api.domain.vo.*; |
| | | import com.ruoyi.system.api.factory.RemoteOrderFallbackFactory; |
| | | import com.ruoyi.system.api.model.AddOrderVo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | |
| | | @PostMapping("/order/countShopServicePerson") |
| | | R<List<Integer>> countShopServicePerson(@RequestParam("shopId") Long shopId); |
| | | |
| | | /** |
| | | * 抽奖活动添加订单 |
| | | * @param orderVo |
| | | * @return |
| | | */ |
| | | @PostMapping(value = "/order/addOrder") |
| | | R addOrder(@RequestBody AddOrderVo orderVo); |
| | | |
| | | } |