includes QRCodeURL entity and redirection logic

This commit is contained in:
ltiongku
2024-07-16 22:45:49 +08:00
parent d1dd29fa1d
commit a02eaab0b1
8 changed files with 124 additions and 41 deletions

View File

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