|
|
|
@ -4,8 +4,8 @@ package com.logpm.factory.mt.feign;
|
|
|
|
|
import com.logpm.factory.mt.dto.MtPushDataDTO; |
|
|
|
|
import org.springblade.common.constant.ModuleNameConstant; |
|
|
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Set; |
|
|
|
@ -20,10 +20,10 @@ public interface MtFactoryDataClient {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据订单编号查询梦天的数据 |
|
|
|
|
* @param orderCodes |
|
|
|
|
* @param orderCode |
|
|
|
|
*/ |
|
|
|
|
@GetMapping(HANDLEDATATOPLATFORM) |
|
|
|
|
List<MtPushDataDTO> orderPushData(@RequestParam("orderCode") Set<String> orderCodes); |
|
|
|
|
@PostMapping(HANDLEDATATOPLATFORM) |
|
|
|
|
List<MtPushDataDTO> orderPushData(@RequestBody Set<String> orderCode); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|