This commit is contained in:
van
2026-05-19 23:15:05 +08:00
parent 379a11ae63
commit 4aec0177dd
9 changed files with 104 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
package com.ruoyi.jarvis.mapper;
import com.ruoyi.jarvis.domain.ErpGoofishOrder;
import com.ruoyi.jarvis.dto.GoofishRrsLogisticsStatsVo;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -25,4 +26,9 @@ public interface ErpGoofishOrderMapper {
List<ErpGoofishOrder> selectByGoofishOrderNo(@Param("orderNo") String orderNo);
int resetShipForRetry(@Param("id") Long id);
/**
* 已关联 jd_order_id、承运为日日顺rrs 或名称含日日顺);排除已退款/已关闭。
*/
GoofishRrsLogisticsStatsVo selectRrsJdLinkedLogisticsStats();
}