package com.xzx.gc.shop.mapper; import com.xzx.gc.entity.ScoreOrderDetails; import com.xzx.gc.util.GcMapper; import org.apache.ibatis.annotations.Param; import java.util.List; public interface ScoreOrderDetailsMapper extends GcMapper { List selectOrderDetailsByOrderId(@Param("orderId") Long orderId); }