jobImageManagementService.java 446 B

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