| | |
| | | @ResponseBody |
| | | Map<String, Object> detail(@RequestBody Map<String, Map<String, Object>> params) { |
| | | Map<String, Object> resJsonData = new HashMap<>(); |
| | | this.issueService.detailIssue(resJsonData, IssueCondition.make(params.get(Constants.REQ_KEY_CONTENT))); |
| | | Pageable relPageable = this.pageUtil.convertRelPageable(this.getPageVo(params)); |
| | | Pageable downPageable = this.pageUtil.convertDownPageable(this.getPageVo(params)); |
| | | |
| | | this.issueService.detailIssue(resJsonData, IssueCondition.make(params.get(Constants.REQ_KEY_CONTENT)), relPageable, downPageable); |
| | | |
| | | return this.setSuccessMessage(resJsonData); |
| | | } |