added url repo

This commit is contained in:
heyethereum
2024-07-16 08:18:25 +08:00
parent a08285ff43
commit d1dd29fa1d
2 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.safeqr.app.qrcode.repository;
import com.safeqr.app.qrcode.entity.URL;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.UUID;
public interface URLRepository extends JpaRepository<URL, UUID> {
}