2021与蓝度共同重构项目,服务端
zhanzhiqin
2022-10-19 612404528a4759a1064f458610832ce056e3b21a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
 
/**
 * @author LiuHaoNan
 * @date 2022/7/27
 */
@RestController
@AllArgsConstructor
@RequestMapping("/v1/c3mError")
public class C3mReportErrorController {
    private C3mReportErrorService c3mReportErrorService;
 
    @GetMapping("/list")
    public ResponseVO<Object>  listReportError(BaseConditionVO conditionVO){
        return ResponseUtil.success(c3mReportErrorService.listReportError(conditionVO));
    }
 
}