CarsService.java 511 Bytes
package com.bsth.service.schedule;

import com.bsth.entity.Cars;
import com.bsth.service.schedule.exception.ScheduleException;

/**
 * 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;
}