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
66cda2a3
Commit
66cda2a3
authored
Jul 03, 2024
by
wdy
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'wangdingyi' into 'dev'
车企文件添加 See merge request
!393
parents
136f3d82
91773253
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
AttachmentsVO.java
...view/src/main/java/com/ruoyi/domain/vo/AttachmentsVO.java
+3
-3
ReviewEnterpriseArchiveServiceImpl.java
...uoyi/service/impl/ReviewEnterpriseArchiveServiceImpl.java
+2
-2
No files found.
quality-review/src/main/java/com/ruoyi/domain/vo/AttachmentsVO.java
View file @
66cda2a3
...
...
@@ -9,15 +9,15 @@ import lombok.experimental.Accessors;
public
class
AttachmentsVO
{
// 附件路径
@ApiModelProperty
(
"附件路径"
)
String
url
;
String
path
;
// 附件名称
@ApiModelProperty
(
"附件名称"
)
String
name
;
// 构造函数
public
AttachmentsVO
(
String
url
,
String
name
)
{
this
.
url
=
url
;
public
AttachmentsVO
(
String
path
,
String
name
)
{
this
.
path
=
path
;
this
.
name
=
name
;
}
...
...
quality-review/src/main/java/com/ruoyi/service/impl/ReviewEnterpriseArchiveServiceImpl.java
View file @
66cda2a3
...
...
@@ -153,7 +153,7 @@ public class ReviewEnterpriseArchiveServiceImpl extends ServiceImpl<ReviewEnterp
if
(
reviewEnterpriseArchive
.
getUrl
()
!=
null
&&
reviewEnterpriseArchive
.
getUrl
().
size
()
!=
0
)
{
String
photo
=
reviewEnterpriseArchive
.
getUrl
().
stream
()
.
map
(
AttachmentsVO:
:
get
Url
)
.
map
(
AttachmentsVO:
:
get
Path
)
.
collect
(
Collectors
.
joining
(
","
));
String
photoName
=
reviewEnterpriseArchive
.
getUrl
().
stream
()
...
...
@@ -273,7 +273,7 @@ public class ReviewEnterpriseArchiveServiceImpl extends ServiceImpl<ReviewEnterp
if
(
reviewEnterpriseArchive
.
getUrl
()
!=
null
&&
reviewEnterpriseArchive
.
getUrl
().
size
()
!=
0
)
{
String
photo
=
reviewEnterpriseArchive
.
getUrl
().
stream
()
.
map
(
AttachmentsVO:
:
get
Url
)
.
map
(
AttachmentsVO:
:
get
Path
)
.
collect
(
Collectors
.
joining
(
","
));
String
photoName
=
reviewEnterpriseArchive
.
getUrl
().
stream
()
...
...
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