BetPlayerFeatureDataRepository.java 370 B

123456789
  1. package com.huimv.face.repo;
  2. import com.huimv.face.entity.BetPlayerFeatureData;
  3. import org.springframework.data.jpa.repository.JpaRepository;
  4. import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
  5. public interface BetPlayerFeatureDataRepository extends JpaRepository<BetPlayerFeatureData, Integer>, JpaSpecificationExecutor<BetPlayerFeatureData> {
  6. }