CarsService.java
448 Bytes
package com.bsth.service.schedule;
import com.bsth.entity.Cars;
/**
* Created by xu on 16/12/8.
*/
public interface CarsService extends BService<Cars, Integer> {
public void validate_nbbh(Cars cars) throws ScheduleException;
public void validate_clbh(Cars cars) throws ScheduleException;
public void validate_cph(Cars cars) throws ScheduleException;
public void validate_sbbh(Cars cars) throws ScheduleException;
}