fuliqi
2025-02-21 64efb660b2c119c00432434c0f651f8996483f18
ycl-server/src/main/java/com/ycl/platform/controller/HomeController.java
@@ -8,6 +8,9 @@
import org.springframework.web.bind.annotation.RestController;
import pojo.AjaxResult;
import java.lang.reflect.InvocationTargetException;
import java.text.ParseException;
/**
 * @author gonghl
 * @since 2024/8/1 下午 5:41
@@ -34,6 +37,20 @@
        return AjaxResult.success(tMonitorService.home(monitorQuery));
    }
    @GetMapping("/video")
    public AjaxResult videoHome(HomeQuery monitorQuery) throws ParseException, InvocationTargetException, NoSuchMethodException, InstantiationException, IllegalAccessException {
        return AjaxResult.success(tMonitorService.videoHome(monitorQuery));
    }
    @GetMapping("/car")
    public AjaxResult carHome(HomeQuery monitorQuery) throws ParseException, InvocationTargetException, NoSuchMethodException, InstantiationException, IllegalAccessException {
        return AjaxResult.success(tMonitorService.carHome(monitorQuery));
    }
    @GetMapping("/face")
    public AjaxResult faceHome(HomeQuery monitorQuery) throws ParseException, InvocationTargetException, NoSuchMethodException, InstantiationException, IllegalAccessException {
        return AjaxResult.success(tMonitorService.faceHome(monitorQuery));
    }
    @GetMapping("/workOrder")
    public AjaxResult workOrder(HomeQuery monitorQuery) {
        return AjaxResult.success(workOrderService.home(monitorQuery));