- package cn.com.lzt.car.cardoc.service;
- import cn.com.lzt.car.cardoc.entity.CarEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface CarService extends CommonService{
-
- public void delete(CarEntity entity) throws Exception;
-
- public Serializable save(CarEntity entity) throws Exception;
-
- public void saveOrUpdate(CarEntity entity) throws Exception;
-
- }
|