Browse Source

2024年7月15日13:39:00

纪新园 1 year ago
parent
commit
c486244b2d

+ 4 - 4
blade-service-api/blade-deliver-goods-api/src/main/java/org/springblade/deliver/goods/feign/IDeliveryClient.java

@@ -111,10 +111,10 @@ public interface IDeliveryClient {
 	 * @return
 	 */
 	@GetMapping(SAVE_DELIVERY_DATA)
-	void saveDeliveryData(@RequestParam("orderId") Long orderId,
-						 @RequestParam("orderNo") String orderNo,
-						 @RequestParam("deliveryStatus") String deliveryStatus,
-						 @RequestParam("estimateGoodGoodsDate") String estimateGoodGoodsDate);
+	void saveDeliveryData(@RequestParam(value = "orderId",required = false) Long orderId,
+						 @RequestParam(value = "orderNo",required = false) String orderNo,
+						 @RequestParam(value = "deliveryStatus",required = false) String deliveryStatus,
+						 @RequestParam(value = "estimateGoodGoodsDate",required = false) String estimateGoodGoodsDate);
 
 	@GetMapping(UPDATE_ORD_NO)
 	void updateOrdNo(@RequestParam("billId")Long billId, @RequestParam("ordNo")String ordNo);