package cn.com.lzt.budget.writeback.service; import cn.com.lzt.budget.writeback.entity.BudgetWriteBackLogEntity; import org.jeecgframework.core.common.service.CommonService; import java.io.Serializable; public interface BudgetWriteBackLogServiceI extends CommonService{ public void delete(BudgetWriteBackLogEntity entity) throws Exception; public Serializable save(BudgetWriteBackLogEntity entity) throws Exception; public void saveOrUpdate(BudgetWriteBackLogEntity entity) throws Exception; }