zhongrj
2023-12-23 2bd69d1dca40d2fdf07f72e0117d2f0febde5359
src/main/java/org/springblade/modules/community/service/impl/CommunityServiceImpl.java
@@ -24,6 +24,8 @@
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
/**
 * 社区表 服务实现类
 *
@@ -38,5 +40,13 @@
      return page.setRecords(baseMapper.selectCommunityPage(page, community));
   }
   /**
    * 查询个人社区编号集合
    * @param userId
    * @return
    */
   @Override
   public List<String> getCommunityCodeListByUserId(Long userId) {
      return baseMapper.getCommunityCodeListByUserId(userId);
   }
}