BudgetTempSheetServiceI.java 859 B

12345678910111213141516171819202122232425262728
  1. package cn.com.lzt.budget.tempsheet.service;
  2. import cn.com.lzt.budget.entity.entity.BudgetEntity;
  3. import cn.com.lzt.budget.tempsheet.entity.BudgetTempSheetEntity;
  4. import org.jeecgframework.core.common.service.CommonService;
  5. import java.io.Serializable;
  6. import java.util.List;
  7. public interface BudgetTempSheetServiceI extends CommonService{
  8. public void delete(BudgetTempSheetEntity entity) throws Exception;
  9. public Serializable save(BudgetTempSheetEntity entity) throws Exception;
  10. public void saveOrUpdate(BudgetTempSheetEntity entity) throws Exception;
  11. /**
  12. * 下发
  13. */
  14. void publish(BudgetTempSheetEntity tempSheetEntity, List<BudgetEntity> entityList);
  15. //撤销
  16. void cancel(String tempSheetId, String entityIds);
  17. //改变指标实例映射关系
  18. void changeMeasureInstMap(BudgetTempSheetEntity tempSheetEntity);
  19. }