| 12345678910111213141516171819202122232425262728 |
- package cn.com.lzt.budget.tempsheet.service;
- import cn.com.lzt.budget.entity.entity.BudgetEntity;
- import cn.com.lzt.budget.tempsheet.entity.BudgetTempSheetEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- import java.util.List;
- public interface BudgetTempSheetServiceI extends CommonService{
-
- public void delete(BudgetTempSheetEntity entity) throws Exception;
-
- public Serializable save(BudgetTempSheetEntity entity) throws Exception;
-
- public void saveOrUpdate(BudgetTempSheetEntity entity) throws Exception;
- /**
- * 下发
- */
- void publish(BudgetTempSheetEntity tempSheetEntity, List<BudgetEntity> entityList);
- //撤销
- void cancel(String tempSheetId, String entityIds);
- //改变指标实例映射关系
- void changeMeasureInstMap(BudgetTempSheetEntity tempSheetEntity);
- }
|