Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
yohoufo-fore
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
mali
6 years ago
Commit
fa4724b90bd14d01abaf4774a3a9cae46b773e88
1 parent
ade780e3
鉴定视频排序展示
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
order/src/main/java/com/yohoufo/order/service/impl/QiniuLiveRecordService.java
order/src/main/java/com/yohoufo/order/service/impl/QiniuLiveRecordService.java
View file @
fa4724b
...
...
@@ -123,8 +123,7 @@ public class QiniuLiveRecordService {
});
List
<
OrderVideoResp
>
sortResp
=
resps
.
stream
().
sorted
((
s1
,
s2
)
->
s2
.
getCreateTimeInt
().
compareTo
(
s1
.
getCreateTimeInt
())).
collect
(
Collectors
.
toList
());
return
sortResp
;
return
sortResp
.
subList
(
0
,
sortResp
.
size
()
>
10
?
10
:
sortResp
.
size
());
}
// 查询宣传视频
...
...
Please
register
or
login
to post a comment