cloudroam
2024-10-24 9e3c6fa190b1c59b2178ae1823c994684a4d9df3
src/main/java/com/mzl/flower/mapper/payment/OrderItemMapper.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mzl.flower.dto.response.payment.AbnormalOrderItemDTO;
import com.mzl.flower.dto.response.payment.OrderItemListDTO;
import com.mzl.flower.dto.response.payment.OrderItemPlatformListDTO;
import com.mzl.flower.entity.payment.OrderItem;
import org.apache.ibatis.annotations.Param;
@@ -14,4 +15,6 @@
    List<AbnormalOrderItemDTO> getAbnormalItems(@Param("orderId") String orderId);
    List<OrderItemPlatformListDTO> getPlatformOrderItems(@Param("orderId") String orderId);
    List<OrderItemListDTO> getOrderItems(@Param("orderIds") List<String> orderIds);
}