CarFleetService.java 454 B

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