Skip to content

Commit

Permalink
api: 更正论坛API相关注释
Browse files Browse the repository at this point in the history
  • Loading branch information
RealHeart committed Sep 24, 2022
1 parent fb522e5 commit 9dfaee2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions qqbot-api/src/main/java/me/zhenxin/qqbot/api/impl/ForumApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import java.util.Map;

/**
* 帖子API
* 帖子API (仅私域可用)
*
* @author 真心
* @since 2022/5/15 13:23
Expand All @@ -40,7 +40,7 @@ public ForumApi(AccessInfo accessInfo) {
}

/**
* 获取帖子列表
* 获取帖子列表 (仅私域可用)
*
* @param channelId 子频道ID
* @return {@link Thread} 列表
Expand All @@ -52,7 +52,7 @@ public List<Thread> getThreadList(String channelId) {
}

/**
* 获取帖子详情
* 获取帖子详情 (仅私域可用)
*
* @param channelId 子频道ID
* @param threadId 帖子ID
Expand All @@ -64,7 +64,7 @@ public Thread getThreadInfo(String channelId, String threadId) {
}

/**
* 发布帖子
* 发布帖子 (仅私域可用)
*
* @param channelId 子频道ID
* @param title 帖子标题
Expand All @@ -80,7 +80,7 @@ public void publishThread(String channelId, String title, String content, int fo
}

/**
* 删除帖子
* 删除帖子 (仅私域可用)
*
* @param channelId 子频道ID
* @param threadId 帖子ID
Expand Down

0 comments on commit 9dfaee2

Please sign in to comment.