ReminderLevelRepository.java 298 Bytes
Newer Older
manxiaoqiang committed
1 2 3 4 5 6 7 8 9 10 11 12 13
package common.repository;


import common.model.ReminderLevel;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.transaction.annotation.Transactional;



@Transactional
public interface ReminderLevelRepository extends JpaRepository<ReminderLevel, Long> {

}