puzhibing
昨天 c4b2a916399eee796bbf93d24bf41fd18c4d9f44
ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteOrderService.java
@@ -8,10 +8,9 @@
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;
@@ -137,4 +136,12 @@
    @PostMapping("/order/countShopServicePerson")
    R<List<Integer>> countShopServicePerson(@RequestParam("shopId") Long shopId);
    /**
     * 抽奖活动添加订单
     * @param orderVo
     * @return
     */
    @PostMapping(value = "/order/addOrder")
    R addOrder(@RequestBody AddOrderVo orderVo);
}