0
//this query can be used to get list of PaymentAttribute for whicch payment details is NOT NULL
    @Query("select p.paymentDetailName from paymentattribute p  where p.entityId=?1 AND p.entityType=?2 and p.paymentDetailName is not null")
    List<String> getNonNullPaymenyDetaisName(String entityId,String entityType);

我的 paymentattribute 表包含一些列,如 entityId、entityType、paymentDetailsName 等。我想根据上述查询仅获取 paymentdetail 列。我收到错误。Spring-mvc web applications 中有没有办法,通过它我可以只获取列而不是完整的元组。上面的代码是存储库的一部分。

4

0 回答 0