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