1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package project.log;
|
| import java.util.List;
| import java.util.Map;
|
| import kernel.web.Page;
|
| public interface MoneyLogService {
|
| /**
| * 保存账变日志
| * @param paramMoneyLog
| */
| public void save(MoneyLog paramMoneyLog);
|
| public Page pagedQuery(int pageNo, int pageSize, String category, String contentType, String partyId);
|
| public Map<String,Object> sumBSalance(String category,String contentType,String partyId);
|
| public List<MoneyLog> findLogsByConentTypeAndDate(String type, String date);
| }
|
|