ADD Clip Table

This commit is contained in:
2025-06-13 10:35:52 +02:00
parent fa120fe7b5
commit 0986552059
5 changed files with 95 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
package com.ddf.vodsystem.repositories;
import com.ddf.vodsystem.entities.Clip;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface ClipRepository extends JpaRepository<Clip, Long> {
}