Commit 7e4ec1a9 by 胡明森

注释修改

parent 9b9fbb2e
...@@ -66,7 +66,7 @@ public class TagApi { ...@@ -66,7 +66,7 @@ public class TagApi {
@ApiOperation("我创建的标签列表") @ApiOperation("我创建的标签列表")
@GetMapping("/my/tag/created") @GetMapping("/my/tag/created")
public Response<PageVO<Tag>> getMyTopics(@Valid PageForm pageForm, @CurrentSubject Subject subject) { public Response<PageVO<Tag>> getMyTags(@Valid PageForm pageForm, @CurrentSubject Subject subject) {
// 根据用户获取列表并返回 // 根据用户获取列表并返回
IPage<Tag> tag = tagService.getTagPage(pageForm.getPage(), pageForm.getSize(), (String) subject.getId()); IPage<Tag> tag = tagService.getTagPage(pageForm.getPage(), pageForm.getSize(), (String) subject.getId());
......
...@@ -18,9 +18,11 @@ import java.util.List; ...@@ -18,9 +18,11 @@ import java.util.List;
public interface ITagService extends IService<Tag> { public interface ITagService extends IService<Tag> {
/** /**
* 创建表填 * 创建标签
* @param tagName * @param tagName
* @param tagType * @param tagType
* @param userId
* @throws TagServiceException
*/ */
void createTag(String tagName, Integer tagType, String userId) throws TagServiceException; void createTag(String tagName, Integer tagType, String userId) throws TagServiceException;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment