1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| package com.stylefeng.guns.modular.system.service;
|
| import com.baomidou.mybatisplus.plugins.Page;
| import com.stylefeng.guns.modular.system.model.DriverActivityHistory;
| import com.baomidou.mybatisplus.service.IService;
| import org.apache.poi.hssf.usermodel.HSSFWorkbook;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * <p>
| * 司机完成活动记录 服务类
| * </p>
| *
| * @author stylefeng
| * @since 2020-06-17
| */
| public interface IDriverActivityHistoryService extends IService<DriverActivityHistory> {
| /**
| * 获取领取记录列表
| * @param page
| * @param activityId
| * @param type
| * @return
| */
| List<Map<String,Object>> getList(Page<Map<String, Object>> page,Integer activityId,Integer type);
|
|
| /**
| * 导出数据查询
| * @param activityId
| * @param type
| * @return
| */
| List<Map<String,Object>> getListt(Integer activityId,Integer type);
|
|
| /**
| * 获取司机活动收益明细
| * @param driverName
| * @param driverPhone
| * @param createTime
| * @param offset
| * @param limit
| * @return
| * @throws Exception
| */
| Map<String, Object> rewardDetailsList(String driverName, String driverPhone, String createTime, Integer offset, Integer limit) throws Exception;
|
|
| /**
| * 导出司机活动收益明细
| * @param driverName
| * @param driverPhone
| * @param createTime
| * @return
| * @throws Exception
| */
| HSSFWorkbook exportRewardDetails(String driverName, String driverPhone, String createTime) throws Exception;
| }
|
|