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