DetourRepository.java 179 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 package com.bsth.repository; import com.bsth.entity.Detour; /** * 绕改道 Repository 接口 */ public interface DetourRepository extends BaseRepository<Detour, Integer> { }