收到错误找不到实体名称的定义

get error Could not find definition for entity name

谁能帮我找到解决这个错误的办法 我想获取服务列表,所以我的代码是

public static List<GenericValue> TW_getListService(Delegator delegator) {

    try {
        List<GenericValue> twService = EntityQuery.use(delegator).from("twService").queryList();


        return twService;
    } catch (GenericEntityException e) {
        Debug.logError(e, "Error looking up ProdCatalogCategories for prodCatalog with id " , module);
    }
    return null;
}

问题出在缓存上,我只是删除了缓存,它起作用了