|
@@ -33,8 +33,7 @@ public class BuildingDynamicController extends BaseController {
|
33
|
33
|
@ApiOperation(value = "项目动态管理列表", notes = "项目动态管理列表")
|
34
|
34
|
@ApiImplicitParams({
|
35
|
35
|
@ApiImplicitParam(paramType = "Query",dataType = "Integer",name = "pageNum",value = "分页第几页" ),
|
36
|
|
- @ApiImplicitParam(paramType = "Query",dataType = "Integer",name = "pageSize",value = "pageSize:每页长度"
|
37
|
|
- )
|
|
36
|
+ @ApiImplicitParam(paramType = "Query",dataType = "Integer",name = "pageSize",value = "pageSize:每页长度")
|
38
|
37
|
|
39
|
38
|
})
|
40
|
39
|
@RequestMapping(value = "/iBuildingDynamicList", method = RequestMethod.POST)
|
|
@@ -42,7 +41,7 @@ public class BuildingDynamicController extends BaseController {
|
42
|
41
|
ResponseBean responseBean = iBuildingDynamicService.iBuildingDynamicList(pageNum,pageSize);
|
43
|
42
|
return responseBean;
|
44
|
43
|
}
|
45
|
|
-
|
|
44
|
+
|
46
|
45
|
@RequestMapping(value = "/iBuildingDynamicSelectId/{id}", method = RequestMethod.GET)
|
47
|
46
|
@ApiOperation(value = "项目动态详情", notes = "项目动态详情")
|
48
|
47
|
@ApiImplicitParams({
|