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