From 10cc0db30a1be5377e4c09bce349014a667849b6 Mon Sep 17 00:00:00 2001 From: puhanshu <a9236326> Date: 星期三, 12 一月 2022 13:21:08 +0800 Subject: [PATCH] Merge branch 'phs' into test --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsLabelServiceImpl.java | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 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 new file mode 100644 index 0000000..1eb5c3e --- /dev/null +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsLabelServiceImpl.java @@ -0,0 +1,29 @@ +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; + +/** + * (McsLabel)表服务实现类 + * + * @author makejava + * @since 2021-12-28 14:37:11 + */ +@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