2021与蓝度共同重构项目,服务端
zhanzhiqin
2022-10-20 4e76b9737e036c18e8a9e840dc443615ffcec348
ximon-admin/src/main/java/com/sandu/ximon/admin/controller/C3mReportErrorController.java
@@ -1,6 +1,11 @@
package com.sandu.ximon.admin.controller;
import com.sandu.common.domain.ResponseVO;
import com.sandu.common.object.BaseConditionVO;
import com.sandu.common.util.ResponseUtil;
import com.sandu.ximon.admin.service.C3mReportErrorService;
import lombok.AllArgsConstructor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -12,4 +17,11 @@
@AllArgsConstructor
@RequestMapping("/v1/c3mError")
public class C3mReportErrorController {
    private C3mReportErrorService c3mReportErrorService;
    @GetMapping("/list")
    public ResponseVO<Object>  listReportError(BaseConditionVO conditionVO){
        return ResponseUtil.success(c3mReportErrorService.listReportError(conditionVO));
    }
}