CarService.java 208 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 package com.bsth.service.basic; import com.bsth.entity.Car; import com.bsth.service.BaseService; /** * Created by panzhao on 2017/8/19. */ public interface CarService extends BaseService<Car, Integer>{ }