TestTablerepository.java 462 B

12345678910111213
  1. // package com.kxs.adminap.dao;
  2. // import java.util.List;
  3. // import org.springframework.data.jpa.repository.JpaRepository;
  4. // import org.springframework.data.jpa.repository.Query;
  5. // import com.kxs.adminap.enity.TestTable;
  6. // public interface TestTablerepository extends JpaRepository<TestTable, Integer> {
  7. // @Query(value = "select * from test_table where #{condition}",nativeQuery = true)
  8. // List<TestTable> findByCondition(String condition);
  9. // }