| | |
| | | @ResponseBody |
| | | Map<String, Object> detail() { |
| | | Map<String, Object> resJsonData = new HashMap<>(); |
| | | |
| | | this.issueTableConfigService.detailIssueTableConfig(resJsonData); |
| | | |
| | | return this.setSuccessMessage(resJsonData); |
| | |
| | | @RequestMapping(value = "/issueTableConfig/relationDetail", produces = MediaType.APPLICATION_JSON_VALUE) |
| | | public |
| | | @ResponseBody |
| | | Map<String, Object> relationDetail(@RequestBody Map<String, Object> params) { |
| | | Map<String, Object> relationDetail(@RequestBody Map<String, Map<String, Object>> params) { |
| | | Map<String, Object> resJsonData = new HashMap<>(); |
| | | this.issueTableConfigService.detailRelationIssueTableConfig(params,resJsonData); |
| | | this.issueTableConfigService.detailRelationIssueTableConfig(params.get(Constants.REQ_KEY_CONTENT), resJsonData); |
| | | |
| | | return this.setSuccessMessage(resJsonData); |
| | | } |
| | |
| | | @RequestMapping(value = "/issueTableConfig/downDetail", produces = MediaType.APPLICATION_JSON_VALUE) |
| | | public |
| | | @ResponseBody |
| | | Map<String, Object> downDetail(@RequestBody Map<String, Object> params) { |
| | | Map<String, Object> downDetail(@RequestBody Map<String, Map<String, Object>> params) { |
| | | Map<String, Object> resJsonData = new HashMap<>(); |
| | | this.issueTableConfigService.detailDownIssueTableConfig(params,resJsonData); |
| | | this.issueTableConfigService.detailDownIssueTableConfig(params.get(Constants.REQ_KEY_CONTENT),resJsonData); |
| | | |
| | | return this.setSuccessMessage(resJsonData); |
| | | } |