CarConfigInfoService.java 495 Bytes
package com.bsth.service.schedule;

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

/**
 * Created by xu on 16/5/9.
 */
public interface CarConfigInfoService extends BService<CarConfigInfo, Long> {
    void validate_cars(CarConfigInfo carConfigInfo) throws ScheduleException;
    void validate_cars_config(CarConfigInfo carConfigInfo) throws ScheduleException;
    void toggleCancel(Long id) throws ScheduleException;
}