|
|
@@ -5,6 +5,7 @@ import com.zhongzheng.modules.order.bo.OrderQueryBo;
|
|
|
import com.zhongzheng.modules.order.domain.Order;
|
|
|
import com.zhongzheng.modules.order.vo.OrderGoodsVo;
|
|
|
import com.zhongzheng.modules.order.vo.OrderListVo;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
@@ -16,4 +17,6 @@ import java.util.List;
|
|
|
*/
|
|
|
public interface OrderMapper extends BaseMapper<Order> {
|
|
|
List<OrderListVo> selectList(OrderQueryBo bo);
|
|
|
+
|
|
|
+ Integer selectUserClass(@Param("goodsId") Long goodsId,@Param("userId") Long userId);
|
|
|
}
|