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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.ruoyi.web;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.service.MatrixService;
import com.ruoyi.web.response.MatrixResponse;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.apache.skywalking.apm.toolkit.trace.Tag;
import org.apache.skywalking.apm.toolkit.trace.Tags;
import org.apache.skywalking.apm.toolkit.trace.Trace;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import java.io.IOException;
@Api(tags = "审查细则的审查结果")
@RestController
@RequestMapping("/usecase/matrix")
public class MatrixController {
@Autowired
private MatrixService matrixService;
@ApiOperation("查看任务详情")
@Trace
@Tags({@Tag(key = "param", value = "arg[0]"), @Tag(key = "result", value = "returnedObj")})
@RequestMapping(method = RequestMethod.POST, value = "/getInfo")
public R<MatrixResponse> getInfo() throws IOException {
return R.ok(matrixService.getMatrixForUrl());
}
@ApiOperation("查看任务详情pad")
@Trace
@Tags({@Tag(key = "param", value = "arg[0]"), @Tag(key = "result", value = "returnedObj")})
@RequestMapping(method = RequestMethod.POST, value = "/getInfoPad")
public R<MatrixResponse> getInfoPad() throws IOException {
return R.ok(matrixService.getMatrixForUrlPad());
}
}