CarsService.java 216 Bytes
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);
}