zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1 package com.changhong.epc.tenant.service.cost.costlog;
Z 2
3 import java.util.List;
4
5 import com.changhong.epc.bean.tenant.cost.budgetlog.MoneyExpendLog;
6
7 public interface MoneyExpendLogService{
8
9     /**
10      * 插入一条log
11      * @param moneyApplyLog
12      * @return
13      */
14     int insertLog(MoneyExpendLog expendLog);
15     
16     /**
17      * 查询log
18      * @param moneyApplyLog
19      * @return
20      */
21     List<MoneyExpendLog> selectLog(MoneyExpendLog expendLog);
22 }