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
| package com.stylefeng.guns.modular.system.dao;
|
| import com.baomidou.mybatisplus.plugins.Page;
| import com.stylefeng.guns.modular.system.model.TPubTransactionDetails;
| import com.baomidou.mybatisplus.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * <p>
| * 交易明细(司机/用户) Mapper 接口
| * </p>
| *
| * @author 吕雪
| * @since 2020-09-16
| */
| public interface TPubTransactionDetailsMapper extends BaseMapper<TPubTransactionDetails> {
|
| /**
| * 查询用户交易明细
| * @author yxh
| * @date 2021/4/8 15:01
| * @param page
| * @param userId
| * @param phone
| * @param state
| * @return java.util.List<java.util.Map<java.lang.String,java.lang.Object>>
| */
| List<Map<String, Object>> selectUserList(@Param("page") Page<Map<String, Object>> page, @Param("userId") Integer userId, @Param("phone") String phone, @Param("state") Integer state);
| }
|
|