我正在做一个在线信用充值申请。我想按类别、类型和面额从数据库中获取凭证。我需要有关在 creatquery() 和 setparameter() 方法中插入的查询的帮助。这是我获取优惠券的代码片段。
public String getVoucherPinByCategoryTypeDeno(String category, String type, double denomination) {
return (String) sessionFactory.getCurrentSession().createQuery("from voucher v where v.category = :category and v.voucherType = :type and v.denomination = :denomination").setparameter().uniqueResult();
}