|
|
@@ -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);
|