Browse Source

Fix getTagType request mapping value

xuchaolang 6 years ago
parent
commit
fdcb5a30ea

+ 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);