| | |
| | | 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 java.math.BigDecimal; |
| | | import java.util.List; |
| | |
| | | */ |
| | | @PostMapping("/order/getGoodsSellStatic") |
| | | R<StaticsShopMgtGoodsVO> getGoodsSellStatic(@RequestBody List<String> orderIdList); |
| | | |
| | | |
| | | /** |
| | | * 获取今日到店用户 |
| | | * @param shopId |
| | | * @return |
| | | */ |
| | | @PostMapping("/order/countShopServicePerson") |
| | | R<List<Integer>> countShopServicePerson(@RequestParam("shopId") Long shopId); |
| | | |
| | | } |