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