| | |
| | | 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; |
| | | |
| | |
| | | @AllArgsConstructor |
| | | @RequestMapping("/v1/c3mError") |
| | | public class C3mReportErrorController { |
| | | private C3mReportErrorService c3mReportErrorService; |
| | | |
| | | @GetMapping("/list") |
| | | public ResponseVO<Object> listReportError(BaseConditionVO conditionVO){ |
| | | return ResponseUtil.success(c3mReportErrorService.listReportError(conditionVO)); |
| | | } |
| | | |
| | | } |