Pu Zhibing
10 小时以前 981aacc8d5de2638a0f5b3eb2585e64cfaf2807d
ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteOrderService.java
@@ -11,6 +11,7 @@
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;
@@ -126,5 +127,14 @@
     */
    @PostMapping("/order/getGoodsSellStatic")
    R<StaticsShopMgtGoodsVO> getGoodsSellStatic(@RequestBody List<String> orderIdList);
    /**
     * 获取今日到店用户
     * @param shopId
     * @return
     */
    @PostMapping("/order/countShopServicePerson")
    R<List<Integer>> countShopServicePerson(@RequestParam("shopId") Long shopId);
}