我有StockRepository
扩展PagingAndSortingRepository
。
这里我有一个方法Query方法即:
List<Stock> findByUserIdAndCustomerId(Integer userId, Integer customerId);
加入Stock
我在StockBilling
上有StockBilling.stock.id
,我想修改上面的方法,按StockBilling.balance到期订购我的结果。
在这方面的任何帮助表示赞赏。
答案 0 :(得分:1)
所以我通过使用以下方法名称完成了这项工作:
List<Stock> findByUserIdAndCustomerIdOrderByStockBillingId(Integer userId, Integer customerId);