|
@@ -134,6 +134,31 @@ public class TaBuildingDynamicController extends BaseController {
|
134
|
134
|
return responseBean;
|
135
|
135
|
}
|
136
|
136
|
|
|
137
|
+ @ApiOperation(value = "后台管理端查询项目活动列表", notes = "后台管理端查询项目活动列表")
|
|
138
|
+ @ApiImplicitParams({
|
|
139
|
+ @ApiImplicitParam(dataTypeClass = Integer.class, name = "pageNum", paramType = "query",value = "第几页"),
|
|
140
|
+ @ApiImplicitParam(dataTypeClass = Integer.class, name = "pageSize", paramType = "query",value = "一页多少行"),
|
|
141
|
+ @ApiImplicitParam(dataTypeClass = String.class, name = "name", paramType = "query",value = "项目名称"),
|
|
142
|
+ @ApiImplicitParam(dataTypeClass = Integer.class, name = "cityId", paramType = "query",value = "城市id"),
|
|
143
|
+ @ApiImplicitParam(dataTypeClass = String.class, name = "buildingId", paramType = "query",value = "项目id"),
|
|
144
|
+ @ApiImplicitParam(dataTypeClass = String.class, name = "title", paramType = "query",value = "标题"),
|
|
145
|
+ @ApiImplicitParam(dataTypeClass = String.class, name = "isEnlist", paramType = "query",value = "是否报名"),
|
|
146
|
+ @ApiImplicitParam(dataTypeClass = String.class, name = "time", paramType = "query",value = "日期")
|
|
147
|
+ })
|
|
148
|
+ @RequestMapping(value = "/admin/iBuildingDynamicSelected", method = RequestMethod.GET)
|
|
149
|
+ public ResponseBean iBuildingDynamicSelectedList(@RequestParam("pageNum")Integer pageNum,
|
|
150
|
+ @RequestParam("pageSize")Integer pageSize,
|
|
151
|
+ @RequestParam(required = false)String name,
|
|
152
|
+ @RequestParam(required = false)Integer cityId,
|
|
153
|
+ @RequestParam(required = false)String buildingId,
|
|
154
|
+ @RequestParam(required = false)String title,
|
|
155
|
+ @RequestParam(required = false)String isEnlist,
|
|
156
|
+ @RequestParam(required = false) @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) LocalDateTime time,
|
|
157
|
+ @RequestParam(required = false)String activityStatus,HttpServletRequest request){
|
|
158
|
+ ResponseBean responseBean = iBuildingDynamicService.iBuildingDynamicSelectedList(pageNum,pageSize,name,buildingId,cityId,isEnlist,time,title,getOrgId(request),activityStatus);
|
|
159
|
+ return responseBean;
|
|
160
|
+ }
|
|
161
|
+
|
137
|
162
|
@RequestMapping(value = "/admin/iBuildingDynamicSelectId/{id}", method = RequestMethod.GET)
|
138
|
163
|
public ResponseBean iBuildingDynamicSelectId(@PathVariable(value = "id") String id, HttpSession session){
|
139
|
164
|
ResponseBean responseBean = iBuildingDynamicService.iBuildingDynamicSelectId(id);
|