package cn.com.lzt.car.carfleet.service; import cn.com.lzt.car.carfleet.entity.CarFleetEntity; import org.jeecgframework.core.common.service.CommonService; import java.io.Serializable; public interface CarFleetService extends CommonService{ public void delete(CarFleetEntity entity) throws Exception; public Serializable save(CarFleetEntity entity) throws Exception; public void saveOrUpdate(CarFleetEntity entity) throws Exception; }