puzhibing
2023-10-08 22199bbdda579861736420fe26c2873ab0f5d21c
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.shop.modular.mall.dao;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.baomidou.mybatisplus.plugins.Page;
import com.sinata.shop.modular.mall.model.MemMerchant;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 门店信息 Mapper 接口
 * </p>
 *
 * @author frankevil
 * @since 2023-03-15
 */
public interface MemMerchantMapper extends BaseMapper<MemMerchant> {
    List<MemMerchant> queryMerchantList(@Param("page") Page<MemMerchant> page, @Param("beginTime")String beginTime,
                                        @Param("endTime")String endTime, @Param("merchantName") String merchantName, @Param("level")Integer level);
 
 
}