1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.stylefeng.guns.modular.system.dao;
|
| import com.baomidou.mybatisplus.mapper.BaseMapper;
| import com.baomidou.mybatisplus.plugins.Page;
| import com.stylefeng.guns.modular.system.model.MerchantCoupon;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
| import java.util.Map;
|
| public interface MerchantCouponMapper extends BaseMapper<MerchantCoupon> {
|
| List<Map<String, Object>> list(@Param("startTime") String startTime, @Param("endTime") String endTime, @Param("merchantName") String merchantName,
| @Param("name") String name, @Param("type") Integer type, @Param("page") Page<Map<String, Object>> page);
|
| List<Map<String, Object>> getMerchantList();
|
| List<Map<String, Object>> getCouponList(@Param("asList") List<String> asList,@Param("type") Integer type,@Param("startTime") String startTime,
| @Param("endTime") String endTime, @Param("merchantName") String merchantName,@Param("name") String name,@Param("page") Page<Map<String, Object>> page);
| }
|
|