CarsService.java 216 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 package com.bsth.service; import com.bsth.entity.Cars; /** * Created by xu on 16/5/31. */ public interface CarsService extends BaseService<Cars, Integer> { Cars queryCarsByInsideCode(String zbh); }