From 0ffc55f78dfb3cc561540af2d033e64c2f4f2e68 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期二, 29 八月 2023 09:57:08 +0800 Subject: [PATCH] 新增商家管理模块 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/VolunteerMerchantService.java | 23 ++++++++++++++++++----- 1 files changed, 18 insertions(+), 5 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/VolunteerMerchantService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/VolunteerMerchantService.java index 7e1d1f7..53872ad 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/VolunteerMerchantService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/VolunteerMerchantService.java @@ -2,9 +2,9 @@ import com.baomidou.mybatisplus.extension.service.IService; import com.panzhihua.common.model.vos.R; -import com.panzhihua.common.model.vos.community.VolunteerTypeVO; +import com.panzhihua.common.model.vos.community.VolunteerMerchantVO; +import com.panzhihua.service_community.entity.SysUser; import com.panzhihua.service_community.entity.VolunteerMerchant; -import com.panzhihua.service_community.entity.VolunteerType; public interface VolunteerMerchantService extends IService<VolunteerMerchant> { @@ -13,15 +13,28 @@ * @param * @return */ - R volunteerMerchantGetList(int pageNum,int pageSize,String type); + R volunteerMerchantGetList(int pageNum,int pageSize, + String merchantState, + String merchantType, + String name, + String communityId); /** * 新增 * @param * @return */ - R insertVolunteerMerchant(VolunteerTypeVO volunteerTypeVO); + R insertVolunteerMerchant(VolunteerMerchantVO vtvo); - R updateVolunteerMerchant(VolunteerTypeVO volunteerTypeVO); + R updateVolunteerMerchant(VolunteerMerchantVO vtvo); R deleteVolunteerMerchant(String id); + + + /** + * 根据电话号码 或者姓名查询用户 + * @param + * @return + */ + R getUser(String communityId,String userName,String userPhone); + } -- Gitblit v1.7.1