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