|
@@ -0,0 +1,15 @@
|
|
|
|
|
+package com.tzy.mapper;
|
|
|
|
|
+
|
|
|
|
|
+import com.tzy.dto.LogisticsDTO;
|
|
|
|
|
+import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * @author huang_run
|
|
|
|
|
+ * @date 2026/5/11 18:48
|
|
|
|
|
+ */
|
|
|
|
|
+@Mapper
|
|
|
|
|
+public interface LotOrderExpressMapper {
|
|
|
|
|
+ LogisticsDTO logisticsInfo(@Param("orderNo") String orderNo);
|
|
|
|
|
+}
|
|
|
|
|
+
|