feat: add poll post type

This commit is contained in:
Tim
2025-08-29 22:36:36 +08:00
parent 59232f99ca
commit 55dd36bd24
9 changed files with 140 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
package com.openisle.repository;
import com.openisle.model.PollPost;
import org.springframework.data.jpa.repository.JpaRepository;
public interface PollPostRepository extends JpaRepository<PollPost, Long> {
}