feat: add point mall redemption

This commit is contained in:
Tim
2025-08-17 02:06:47 +08:00
parent df4df1933a
commit 8d98c876d2
11 changed files with 352 additions and 84 deletions

View File

@@ -0,0 +1,8 @@
package com.openisle.repository;
import com.openisle.model.PointGood;
import org.springframework.data.jpa.repository.JpaRepository;
/** Repository for point mall goods. */
public interface PointGoodRepository extends JpaRepository<PointGood, Long> {
}