CarDeviceService.java
324 Bytes
package com.bsth.service.schedule;
import com.bsth.entity.CarDevice;
import com.bsth.service.schedule.exception.ScheduleException;
/**
* Created by xu on 16/12/15.
*/
public interface CarDeviceService extends BService<CarDevice, Long> {
void validate_qyrq(CarDevice carDevice) throws ScheduleException;
}