Class TimeController
- java.lang.Object
-
- com.arms.api.analysis.time.controller.TimeController
-
@RestController @RequestMapping("/admin/arms/analysis/time") public class TimeController extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description TimeController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.web.servlet.ModelAndViewgetHeatMapDataForYear(TimeDTO timeDTO)org.springframework.web.servlet.ModelAndViewgetMultiCombinationChartData(TimeDTO timeDTO)org.springframework.http.ResponseEntity<CommonResponse.ApiResult<java.util.List<RidgeLineVO>>>getRidgeLineData(TimeDTO timeDTO)org.springframework.web.servlet.ModelAndViewgetScatterChartData(TimeDTO timeDTO)org.springframework.web.servlet.ModelAndViewgetUpdatedPdServiceVersionAlmIssueByDate(TimeDTO timeDTO)
-
-
-
Method Detail
-
getHeatMapDataForYear
@PostMapping("/heatmap-data") public org.springframework.web.servlet.ModelAndView getHeatMapDataForYear(@RequestBody TimeDTO timeDTO)
-
getScatterChartData
@PostMapping("/scatter-data") public org.springframework.web.servlet.ModelAndView getScatterChartData(@RequestBody TimeDTO timeDTO)
-
getMultiCombinationChartData
@PostMapping("/updated-issue/multi-combination-data") public org.springframework.web.servlet.ModelAndView getMultiCombinationChartData(@RequestBody TimeDTO timeDTO)
-
getUpdatedPdServiceVersionAlmIssueByDate
@PostMapping("/updated-timeline") public org.springframework.web.servlet.ModelAndView getUpdatedPdServiceVersionAlmIssueByDate(@RequestBody TimeDTO timeDTO)
-
getRidgeLineData
@PostMapping("/updated-ridgeline") public org.springframework.http.ResponseEntity<CommonResponse.ApiResult<java.util.List<RidgeLineVO>>> getRidgeLineData(@RequestBody TimeDTO timeDTO) throws java.lang.Exception- Throws:
java.lang.Exception
-
-