在 android 工作室项目中出现此错误 "Must have exactly 1 query in the value of @Query or @DatabaseView"

Getting this error "Must have exactly 1 query in the value of @Query or @DatabaseView" in android studio project

我需要一些帮助。当我构建我的项目时,我在我的 android 工作室项目中收到此错误“@Query 或@DatabaseView 的值中必须有 1 个查询”。我在我的 cartdao.java 文件代码中收到此错误:

package com.example.xyz;

import androidx.room.Dao;

import androidx.room.Delete;

import androidx.room.Insert;

import androidx.room.Query;

import java.util.List;

@道 public 接口 CartDao {

@Insert
void insertNew(CartOffline cartOffline);

@Query("")
List<CartOffline> getall();

@Query("")
List<CartOffline>  getCartProduct(String priceUnitId);

@Query("")
void updateObj(long quantity, String priceunitid);


@Query("")
void deleteObjbyPid(String priceunitid);

@Delete
void deleteObj(CartOffline cartOffline);

@Query("")
int getProductCount(String pId);

@Query("")
void deleteAll();
/*@Query("UPDATE CartOffline SET quantity = :quantity")
void updetCart()*/

}

尝试添加查询

例如,您的 getAll 函数应该 return 来自某些 table 的数据。 向您定义@Query 注释的每个乐趣添加查询。