automaticCaptureManagementService.java 554 B

1234567891011121314
  1. package cn.com.lzt.car.automaticCaptureManagement.service;
  2. import cn.com.lzt.car.automaticCaptureManagement.entity.TBCarAutomaticCaptureManagement;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import java.io.Serializable;
  5. public interface automaticCaptureManagementService extends CommonService {
  6. void delete(TBCarAutomaticCaptureManagement entity) throws Exception;
  7. Serializable save(TBCarAutomaticCaptureManagement entity) throws Exception;
  8. void saveOrUpdate(TBCarAutomaticCaptureManagement entity) throws Exception;
  9. }