|
@@ -26,8 +26,10 @@ import javax.servlet.http.HttpSession;
|
26
|
26
|
@RequestMapping("/")
|
27
|
27
|
@Api(value = "项目动态管理API",description = "项目动态管理API")
|
28
|
28
|
public class BuildingDynamicController extends BaseController {
|
|
29
|
+
|
29
|
30
|
@Autowired
|
30
|
31
|
private IBuildingDynamicService iBuildingDynamicService;
|
|
32
|
+
|
31
|
33
|
@ApiOperation(value = "项目动态管理列表", notes = "项目动态管理列表")
|
32
|
34
|
@ApiImplicitParams({
|
33
|
35
|
@ApiImplicitParam(paramType = "Query",dataType = "Integer",name = "pageNum",value = "分页第几页" ),
|
|
@@ -40,6 +42,7 @@ public class BuildingDynamicController extends BaseController {
|
40
|
42
|
ResponseBean responseBean = iBuildingDynamicService.iBuildingDynamicList(pageNum,pageSize);
|
41
|
43
|
return responseBean;
|
42
|
44
|
}
|
|
45
|
+
|
43
|
46
|
@RequestMapping(value = "/iBuildingDynamicSelectId/{id}", method = RequestMethod.GET)
|
44
|
47
|
@ApiOperation(value = "项目动态详情", notes = "项目动态详情")
|
45
|
48
|
@ApiImplicitParams({
|