| | |
| | | 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)表服务实现类 |
| | |
| | | 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; |
| | | } |
| | | } |