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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.sinata.shop.modular.mall.service;
 
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.IService;
import com.sinata.shop.modular.mall.model.MemMerchant;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 门店信息 服务类
 * </p>
 *
 * @author frankevil
 * @since 2023-03-15
 */
public interface IMemMerchantService extends IService<MemMerchant> {
 
    /**
     * 数据装换
     * @param list
     * @param merchantId
     */
    void wrapperMapMerchant(List<Map<String, Object>> list, String merchantId);
 
    /**
     * 门店升级
     * @param merchantId
     * @param gradeId
     */
    void upgradeMerchant(Integer merchantId, Integer gradeId);
 
    /**
     * 获取门店用户id
     * @param merchantId
     * @return
     */
    Integer getUserId(Integer merchantId);
 
    List<MemMerchant> queryMerchantList(Page<MemMerchant> page, String beginTime, String endTime, String merchantName, Integer level);
 
}