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);
|
}
|