From 3c884ccd7b51edf3b36840bf99de5edaa41a38a7 Mon Sep 17 00:00:00 2001 From: 张天森 <1292933220@qq.com> Date: 星期三, 12 十月 2022 19:05:28 +0800 Subject: [PATCH] 三说会堂事件流程处理 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsLabelServiceImpl.java | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsLabelServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsLabelServiceImpl.java index f5ed30f..1eb5c3e 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsLabelServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsLabelServiceImpl.java @@ -1,10 +1,12 @@ package com.panzhihua.service_community.service.impl; +import org.springframework.stereotype.Service; + import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.panzhihua.common.model.vos.R; import com.panzhihua.service_community.dao.McsLabelDAO; import com.panzhihua.service_community.entity.McsLabel; import com.panzhihua.service_community.service.McsLabelService; -import org.springframework.stereotype.Service; /** * (McsLabel)表服务实现类 @@ -15,4 +17,13 @@ @Service("mcsLabelService") public class McsLabelServiceImpl extends ServiceImpl<McsLabelDAO, McsLabel> implements McsLabelService { + /** + * 获取产品标签列表 + * @param userId + * @return + */ + @Override + public R getMcsLabelList(Long userId) { + return R.ok(this.baseMapper.selectVOList(userId)); + } } -- Gitblit v1.7.1