mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.panzhihua.service_dangjian.service;
 
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.community.building.NewFightConvenientMerchantVO;
import com.panzhihua.service_dangjian.entity.NewFightConvenientMerchant;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 党组织
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2020-11-30 11:39
 **/
public interface NewFightConvenientMerchantService
{
 
 
    /**
     * 删除便民服务商家
     *
     * @param merchantId
     * @param operator
     * @return
     */
    R deleteMerchantById(String merchantId);
 
    /**
     * 编辑状态
     * @param merchantId
     * @param status
     * @return
     */
    R editStatus(String merchantId,String status);
 
    /**
     * 分页查询便民服务商家 运营后台
     *
     * @param page                      分页参数
     * @param item
     * @return
     */
    R pageMerchant(int pageNum, int pageSize,
                   String isDel,
                   String keyword,
                   String status,
                   String communityId);
 
    /**
     * 查询商家信息
     *
     * @param merchantId
     * @return
     */
    NewFightConvenientMerchant selectMerchantById(String merchantId);
 
 
    R addData(NewFightConvenientMerchantVO item);
 
    R editData(NewFightConvenientMerchantVO item);
 
 
    R selectUserList(String communityId,String phoneOrname);
 
    R selectUserListB(String communityId,String phoneOrname);
 
 
    R selectUserBind(String communityId, String userId);
}