dcs 1 년 전
부모
커밋
c4c7e143fe
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      virgo.api/src/main/java/com/bosshand/virgo/api/controller/TagController.java

+ 1 - 1
virgo.api/src/main/java/com/bosshand/virgo/api/controller/TagController.java

@@ -29,7 +29,7 @@ public class TagController {
         return Response.ok();
     }
 
-    @ApiOperation("根据type获取")
+    @ApiOperation("根据type获取,type 1:项目,2:单位工程,3:房源")
     @RequestMapping(value = "/{type}", method = RequestMethod.POST)
     public Response getList(@PathVariable int type) {
         return Response.ok(tagService.getType(type));