mitao
2024-06-06 3d2b51ea4520533de5e78f88dddf5b5c7dce4247
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
package com.sinata.modular.member.service;
 
import com.baomidou.mybatisplus.plugins.Page;
import com.sinata.modular.member.model.MemMerchant;
import com.baomidou.mybatisplus.service.IService;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 商家信息 服务类
 * </p>
 *
 * @author goku
 * @since 2023-03-23
 */
public interface IMemMerchantService extends IService<MemMerchant> {
 
    void wrapperMapMerchant(List<Map<String, Object>> list, String userKey);
 
    /**
     * @param merchantId 商家id
     * @return
     * @Title: findMerchantGoodsCount
     * @Description: 根据商家id查询商品数量总和
     * @author guohongjin
     * @date 2023/3/23
     */
    int findMerchantGoodsCount(Long merchantId);
 
    /**
     * 商家审核
     */
    void auditMerchant(Integer memMerchantId, Integer state, String auditMark, String classMerchantJson);
 
 
    List<MemMerchant> queryMerchantList(Page<MemMerchant> page, String beginTime, String endTime, String merchantName, Integer cityCode1, Integer cityCode2, Integer cityCode3);
 
}