MerchantFundMapper.java
3.36 KB
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.diligrp.rider.mapper;
import com.diligrp.rider.vo.MerchantBillDetailItemVO;
import com.diligrp.rider.vo.MerchantBillItemVO;
import com.diligrp.rider.vo.RiderBillDetailItemVO;
import com.diligrp.rider.vo.RiderBillItemVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface MerchantFundMapper {
long countMerchantBills(@Param("cityId") Long cityId,
@Param("keyword") String keyword,
@Param("startTime") Long startTime,
@Param("endTime") Long endTime);
List<MerchantBillItemVO> selectMerchantBills(@Param("cityId") Long cityId,
@Param("keyword") String keyword,
@Param("startTime") Long startTime,
@Param("endTime") Long endTime,
@Param("offset") int offset,
@Param("pageSize") int pageSize);
long countMerchantBillDetails(@Param("cityId") Long cityId,
@Param("outStoreId") String outStoreId,
@Param("startTime") Long startTime,
@Param("endTime") Long endTime);
List<MerchantBillDetailItemVO> selectMerchantBillDetails(@Param("cityId") Long cityId,
@Param("outStoreId") String outStoreId,
@Param("startTime") Long startTime,
@Param("endTime") Long endTime,
@Param("offset") int offset,
@Param("pageSize") int pageSize);
long countRiderBills(@Param("cityId") Long cityId,
@Param("keyword") String keyword,
@Param("startTime") Long startTime,
@Param("endTime") Long endTime);
List<RiderBillItemVO> selectRiderBills(@Param("cityId") Long cityId,
@Param("keyword") String keyword,
@Param("startTime") Long startTime,
@Param("endTime") Long endTime,
@Param("offset") int offset,
@Param("pageSize") int pageSize);
long countRiderBillDetails(@Param("cityId") Long cityId,
@Param("riderId") Long riderId,
@Param("startTime") Long startTime,
@Param("endTime") Long endTime);
List<RiderBillDetailItemVO> selectRiderBillDetails(@Param("cityId") Long cityId,
@Param("riderId") Long riderId,
@Param("startTime") Long startTime,
@Param("endTime") Long endTime,
@Param("offset") int offset,
@Param("pageSize") int pageSize);
}