21 lines
576 B
Java
21 lines
576 B
Java
package com.jasamedika.medifirst2000.dao;
|
|
|
|
import com.jasamedika.medifirst2000.entities.VoucherPaket;
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
|
/**
|
|
* @author Salman
|
|
* @version 1.0.0
|
|
* @since 16 Aug 2023
|
|
*/
|
|
public interface VoucherPaketDao extends JpaRepository<VoucherPaket, String> {
|
|
/**
|
|
* Query untuk mendapatkan data voucher paket berdasarkan kode yang diminta
|
|
*
|
|
* @param kode
|
|
* sebuah <code>String</code> 7 karakter kode voucher
|
|
* @return data entitas <code>VoucherPaket</code>
|
|
*/
|
|
VoucherPaket findByKode(String kode);
|
|
}
|