Commit 304e4f22 authored by 王飞's avatar 王飞

1、删除无用字段

parent 270582c7
......@@ -17,7 +17,4 @@ public class MatrixColumnVO {
@ApiModelProperty("列名称")
private String title;
@ApiModelProperty("用例id;没有用例则为null")
private Long useCaseId;
}
......@@ -52,7 +52,7 @@ public class MatrixServiceImpl implements MatrixService {
List<MatrixColumnVO> columns = new ArrayList();
for(TestType type : types) {
MatrixColumnVO column = new MatrixColumnVO(type.getId(), type.getTestType(), null);
MatrixColumnVO column = new MatrixColumnVO(type.getId(), type.getTestType());
columns.add(column);
}
......
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;
@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() {
return R.ok(matrixService.getMatrix());
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment