zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.changhong.epc.tenant.mapper.tenant.cost.costlog;
 
import org.apache.ibatis.annotations.Param;
 
import com.changhong.epc.bean.form.ProcessBudget;
import com.changhong.epc.bean.tenant.cost.budgetlog.MoneyBudgetLog;
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
/** 
 * 
 * @ClassName: MoneyBudgetLogMapper
 * @author [九鼎联合科技] 
 * @date 2017年11月08日 下午02:51:51
 */
public interface MoneyBudgetLogMapper extends MybatisBaseMapper<MoneyBudgetLog>{
 
    /**
     * 查询最新的一条记录
     * @param moneyBudgetLog
     * @return
     */
    MoneyBudgetLog selectNewestRecordLog(@Param("budgetLog") ProcessBudget budgetLog);
}