Your Name 4 年之前
父節點
當前提交
a059293004

+ 1
- 1
src/main/java/com/shigongli/controller/TaHouseSurroundController.java 查看文件

@@ -62,7 +62,7 @@ public class TaHouseSurroundController extends BaseController {
62 62
      * @param taHouseSurround 实体对象
63 63
      * @return
64 64
      */
65
-    @RequestMapping(value="/taHouseSurround",method= RequestMethod.POST)
65
+    @RequestMapping(value="/mp/taHouseSurround",method= RequestMethod.POST)
66 66
     @ApiOperation(value="保存", notes = "保存", httpMethod = "POST", response = ResponseBean.class)
67 67
     public ResponseBean taHouseSurroundAdd(@ApiParam("保存内容") @RequestBody TaHouseSurround taHouseSurround) throws Exception{
68 68
 

+ 3
- 2
src/main/java/com/shigongli/controller/TaMetaImageTagController.java 查看文件

@@ -51,9 +51,10 @@ public class TaMetaImageTagController extends BaseController {
51 51
      * @param pageSize
52 52
      * @return
53 53
      */
54
-    @RequestMapping(value="/mp/taMetaImageTag",method= RequestMethod.GET)
54
+    @RequestMapping(value="/{client}/taMetaImageTag",method= RequestMethod.GET)
55 55
     @ApiOperation(value="列表", notes = "列表", httpMethod = "GET", response = ResponseBean.class)
56
-    public ResponseBean taMetaImageTagList(@ApiParam("页码") @RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
56
+    public ResponseBean taMetaImageTagList(@ApiParam(value = "客户端", allowableValues = "ma,mp") @RequestParam(value ="client") String client,
57
+                                           @ApiParam("页码") @RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
57 58
                                            @ApiParam("单页数据量") @RequestParam(value ="pageSize",defaultValue = "10") Integer pageSize,
58 59
                                            @ApiParam("标签ID") @RequestParam(value ="tagIds") String tagIds) throws Exception{
59 60