|
@@ -36,9 +36,9 @@ public class AppFeedbackController {
|
|
* @param appFeedbackFindRequestDTO
|
|
* @param appFeedbackFindRequestDTO
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @GetMapping("/findByPage")
|
|
|
|
|
|
+ @PostMapping("/findByPage")
|
|
@Operation(summary = "app意见反馈分页查询")
|
|
@Operation(summary = "app意见反馈分页查询")
|
|
- public Result<IPage<FindResponseDTO>> findByList(AppFeedbackFindRequestDTO appFeedbackFindRequestDTO){
|
|
|
|
|
|
+ public Result<IPage<FindResponseDTO>> findByList(@RequestBody AppFeedbackFindRequestDTO appFeedbackFindRequestDTO){
|
|
FindPageRequestDTO findPageRequestDTO = new FindPageRequestDTO();
|
|
FindPageRequestDTO findPageRequestDTO = new FindPageRequestDTO();
|
|
findPageRequestDTO.setUserId(appFeedbackFindRequestDTO.getUserId());
|
|
findPageRequestDTO.setUserId(appFeedbackFindRequestDTO.getUserId());
|
|
return Result.ok(iAppFeedbackService.findPage(appFeedbackFindRequestDTO.getPageNo(),appFeedbackFindRequestDTO.getPageSize(),findPageRequestDTO));
|
|
return Result.ok(iAppFeedbackService.findPage(appFeedbackFindRequestDTO.getPageNo(),appFeedbackFindRequestDTO.getPageSize(),findPageRequestDTO));
|