|
@@ -1,6 +1,7 @@
|
|
|
package com.yonge.cooleshow.student.controller;
|
|
|
|
|
|
|
|
|
+import com.yonge.cooleshow.biz.dal.dto.ImGroupNoticeDto;
|
|
|
import com.yonge.cooleshow.biz.dal.entity.ImGroupNotice;
|
|
|
import com.yonge.cooleshow.biz.dal.service.ImGroupNoticeService;
|
|
|
import com.yonge.cooleshow.common.controller.BaseController;
|
|
@@ -39,7 +40,7 @@ public class ImGroupNoticeController extends BaseController {
|
|
|
})
|
|
|
@ApiOperation("分页查询")
|
|
|
@PostMapping(value = "/queryPage")
|
|
|
- public HttpResponseResult<PageInfo<ImGroupNotice>> queryPage(@RequestBody Map<String,Object> params) throws Exception {
|
|
|
+ public HttpResponseResult<PageInfo<ImGroupNoticeDto>> queryPage(@RequestBody Map<String,Object> params) throws Exception {
|
|
|
return succeed(imGroupNoticeService.queryPage(params));
|
|
|
}
|
|
|
}
|