Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vehicle-quality-review
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王飞
vehicle-quality-review
Commits
4c27fce1
Commit
4c27fce1
authored
Feb 19, 2024
by
王飞
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'wangfei' into 'dev'
1、修改返回前端的id类型 See merge request
!87
parents
c0e91e9c
0e03d8fe
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
MatrixColumnVO.java
...iew/src/main/java/com/ruoyi/domain/vo/MatrixColumnVO.java
+1
-1
MatrixServiceImpl.java
...c/main/java/com/ruoyi/service/impl/MatrixServiceImpl.java
+1
-1
No files found.
quality-review/src/main/java/com/ruoyi/domain/vo/MatrixColumnVO.java
View file @
4c27fce1
...
...
@@ -12,7 +12,7 @@ import lombok.NoArgsConstructor;
@Data
public
class
MatrixColumnVO
{
private
Lo
ng
id
;
private
Stri
ng
id
;
@ApiModelProperty
(
"列名称"
)
private
String
title
;
...
...
quality-review/src/main/java/com/ruoyi/service/impl/MatrixServiceImpl.java
View file @
4c27fce1
...
...
@@ -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
());
MatrixColumnVO
column
=
new
MatrixColumnVO
(
String
.
valueOf
(
type
.
getId
()
),
type
.
getTestType
());
columns
.
add
(
column
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment