CarConfigInfoService.java
409 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 toggleCancel(Long id) throws ScheduleException;
}