浏览代码

Fix getTagType request mapping value

xuchaolang 6 年之前
父节点
当前提交
fdcb5a30ea
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      rankin-api-web/src/main/java/cn/rankin/apiweb/controller/TagController.java

+ 1 - 1
rankin-api-web/src/main/java/cn/rankin/apiweb/controller/TagController.java

@@ -29,7 +29,7 @@ public class TagController {
         return tagService.findPageByTagId(tagId, merchantId, pageNo, pageSize);
     }
 
-    @RequestMapping(value = "/tagGroup/{code}", method = RequestMethod.GET)
+    @RequestMapping(value = "/tagType/{code}", method = RequestMethod.GET)
     public APIResult<TagGroupVo> getTagType(@NeedUser DeviceUserVo user, @PathVariable("code") String code) {
         String merchantId = user.getMerchantId();
         return tagService.findTagGroupByCode(code, merchantId);