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