| | |
| | | package com.ycl.platform.controller; |
| | | |
| | | import com.ycl.platform.domain.query.HomeQuery; |
| | | import com.ycl.platform.service.ITMonitorService; |
| | | import com.ycl.platform.service.WorkOrderService; |
| | | import com.ycl.platform.service.YwUnitService; |
| | | import com.ycl.platform.service.*; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | private final YwUnitService ywUnitService; |
| | | private final ITMonitorService tMonitorService; |
| | | private final WorkOrderService workOrderService; |
| | | private final YwPointService ywPointService; |
| | | private final IContractScoreService contractScoreService; |
| | | private final ICheckScoreService checkScoreService; |
| | | |
| | | @GetMapping("/ywUnitList") |
| | | public AjaxResult ywUnitList() { |
| | |
| | | return AjaxResult.success(workOrderService.home(monitorQuery)); |
| | | } |
| | | |
| | | @GetMapping("/ywPoint") |
| | | public AjaxResult ywPoint() { |
| | | return AjaxResult.success(ywPointService.home()); |
| | | } |
| | | |
| | | @GetMapping("/ywUnitCount") |
| | | public AjaxResult ywUnitCount() { |
| | | return AjaxResult.success(ywUnitService.ywUnitCount()); |
| | | } |
| | | |
| | | @GetMapping("/checkScore") |
| | | public AjaxResult checkScore() { |
| | | return AjaxResult.success(checkScoreService.home()); |
| | | } |
| | | |
| | | @GetMapping("/calculate") |
| | | public AjaxResult calculate() { |
| | | return AjaxResult.success(contractScoreService.calculate()); |
| | | } |
| | | |
| | | } |