CarDeviceRepository.java 256 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 package com.bsth.repository; import com.bsth.entity.CarDevice; import org.springframework.stereotype.Repository; /** * Created by xu on 16/6/15. */ @Repository public interface CarDeviceRepository extends BaseRepository<CarDevice, Long> { }