这里面为什么传的是 userId 而不是 productId呢?
public ServerResponse<CartVo> selectOrUnselectAll(Integer userId,Integer checked){
cartMapper.checkedOrUncheckedProduct(userId,checked);
return this.cartList(userId);
/* CartVo cartVo = this.getCartVoLimit(userId);
return ServerResponse.createBySuccess(cartVo);*/
}
登录后可查看更多问答,登录/注册