From 12c595079a76967023895b701bd918b85adca5e5 Mon Sep 17 00:00:00 2001 From: puhanshu <a9236326> Date: 星期四, 30 十二月 2021 18:06:36 +0800 Subject: [PATCH] 微商业街-12/30代码提交 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsInformationServiceImpl.java | 36 +++++++++++++++++++++++++++++++++++- 1 files changed, 35 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsInformationServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsInformationServiceImpl.java index d4a1130..c45fb66 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsInformationServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/McsInformationServiceImpl.java @@ -1,10 +1,14 @@ 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.dtos.community.microCommercialStreet.PageMcsInformationDTO; +import com.panzhihua.common.model.dtos.community.microCommercialStreet.SetShelfForInfoDTO; +import com.panzhihua.common.model.vos.R; import com.panzhihua.service_community.dao.McsInformationDAO; import com.panzhihua.service_community.entity.McsInformation; import com.panzhihua.service_community.service.McsInformationService; -import org.springframework.stereotype.Service; /** * (McsInformation)表服务实现类 @@ -16,4 +20,34 @@ public class McsInformationServiceImpl extends ServiceImpl<McsInformationDAO, McsInformation> implements McsInformationService { + /** + * 分页查询戳戳资讯 + * @param pageMcsInformationDTO + * @return + */ + @Override + public R pageMcsInfo(PageMcsInformationDTO pageMcsInformationDTO) { + return null; + } + + /** + * 上架/下架戳戳资讯 + * @param setShelfForInfoDTO + * @return + */ + @Override + public R setShelfForMcsInfo(SetShelfForInfoDTO setShelfForInfoDTO) { + return null; + } + + /** + * 删除戳戳资讯 + * @param infoId + * @param userId + * @return + */ + @Override + public R deleteMcsInfo(Long infoId, Long userId) { + return null; + } } -- Gitblit v1.7.1