1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.sinata.modular.system.dao;
|
| import com.baomidou.mybatisplus.plugins.Page;
| import com.sinata.modular.system.model.MyUserCouponOrder;
| import com.baomidou.mybatisplus.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * <p>
| * 有价优惠券订单 Mapper 接口
| * </p>
| *
| * @author fq
| * @since 2023-03-14
| */
| public interface MyUserCouponOrderMapper extends BaseMapper<MyUserCouponOrder> {
| List<Map<String, Object>> getUserOrderList(@Param("page") Page<Map<String, Object>> page,@Param("beginTime") String beginTime, @Param("endTime") String endTime, @Param("orderNo") String orderNo
| , @Param("userName") String userName, @Param("phone") String phone , @Param("couponName") String couponName, @Param("state") Integer state);
|
| }
|
|