This commit is contained in:
van
2026-04-10 00:29:04 +08:00
parent 6f482256c5
commit 0205fe2c09
10 changed files with 336 additions and 32 deletions

View File

@@ -2,6 +2,7 @@ package com.ruoyi.jarvis.service;
import com.alibaba.fastjson2.JSONObject;
import com.ruoyi.jarvis.domain.ErpGoofishOrder;
import com.ruoyi.jarvis.domain.ErpGoofishOrderEventLog;
import java.util.List;
@@ -39,4 +40,7 @@ public interface IErpGoofishOrderService {
* 京东单物流扫描已得到运单号并写入 Redis 后调用:同步到闲鱼单并尝试开放平台发货。
*/
void notifyJdWaybillReady(Long jdOrderId);
/** 订单状态 / 物流 / 发货 变更日志(新→旧) */
List<ErpGoofishOrderEventLog> listEventLogsByOrderId(Long orderId);
}