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

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

import java.util.Map;

/**
 * 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;
    Map<String, Object> update(Cars cars);
}