ActivitiOfficeOthersServiceI.java 543 B

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