package com.changhong.epc.tenant.service.cost.costlog;
|
|
import java.util.List;
|
|
import com.changhong.epc.bean.form.ProcessBudget;
|
import com.changhong.epc.bean.tenant.cost.budgetlog.MoneyBudgetLog;
|
|
public interface MoneyBudgetLogService {
|
|
/**
|
* 插入一条log
|
* @param moneyApplyLog
|
* @return
|
*/
|
int insertLog(MoneyBudgetLog moneyBudgetLog);
|
|
/**
|
* 查询log
|
* @param moneyApplyLog
|
* @return
|
*/
|
List<MoneyBudgetLog> selectLog(ProcessBudget processBudget);
|
|
/**
|
* 查询最新一天记录
|
* @param processBudget
|
* @return
|
*/
|
MoneyBudgetLog selectNewestLog(ProcessBudget processBudget);
|
}
|