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
| package com.stylefeng.guns.modular.system.service;
|
| import com.baomidou.mybatisplus.plugins.Page;
| import com.baomidou.mybatisplus.service.IService;
| import com.stylefeng.guns.modular.system.model.MerchantActivity;
|
| import java.util.List;
| import java.util.Map;
|
|
| public interface IMerchantActivityService extends IService<MerchantActivity> {
|
| List<Map<String, Object>> list(String startTime, String endTime, Integer type, String merchantName, Integer status, Integer companyId, Page<Map<String, Object>> page);
|
| /**
| * 领取记录
| *
| * @param userName
| * @param phone
| * @param startTime
| * @param endTime
| * @param status
| * @param page
| * @return
| */
| List<Map<String, Object>> getReceiveList(Integer merchantActivityId, String userName, String phone, String startTime, String endTime, Integer status, Page<Map<String, Object>> page);
|
| List<Map<String, Object>> activityExamineList(String startTime, String endTime, Integer type, Integer auditStatus, Integer companyId, Page<Map<String, Object>> page);
|
| List<Map<String, Object>> getMerchantActivityGiveList(String startTime, String endTime, Integer type, String merchantName, Integer status, Integer companyId, Page<Map<String, Object>> page);
|
| List<Map<String, Object>> getUserList(Page<Map<String, Object>> page, String name, String phone, String startTime, String endTime);
|
| List<Map<String, Object>> getDriverList(Page<Map<String, Object>> page, String name,String companyName, String phone, String startTime, String endTime);
| }
|
|