package com.mzl.flower.mapper.payment; 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; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface OrderItemMapper extends BaseMapper { List getAbnormalItems(@Param("orderId") String orderId); List getPlatformOrderItems(@Param("orderId") String orderId); List getOrderItems(@Param("orderIds") List orderIds); }