Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sequoia_score
Overview
Overview
Details
Activity
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
mark
sequoia_score
Commits
b4e9dede
Commit
b4e9dede
authored
Aug 02, 2021
by
Lem
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
球队详情bug修改
parent
04a18616
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
MatchServiceImpl.java
...n/java/com/live/common/service/impl/MatchServiceImpl.java
+2
-2
No files found.
score-common/src/main/java/com/live/common/service/impl/MatchServiceImpl.java
View file @
b4e9dede
...
@@ -481,11 +481,11 @@ public class MatchServiceImpl implements MatchService {
...
@@ -481,11 +481,11 @@ public class MatchServiceImpl implements MatchService {
.
builder
()
.
builder
()
.
country
(
countryMap
.
getOrDefault
(
team
.
getCountry
(),
null
))
.
country
(
countryMap
.
getOrDefault
(
team
.
getCountry
(),
null
))
.
id
(
team
.
getId
())
.
id
(
team
.
getId
())
.
sportsName
(
sports
.
getCompetitionShortName
())
.
sportsName
(
sports
==
null
?
"未知"
:
sports
.
getCompetitionShortName
())
.
teamIcon
(
team
.
getTeamIcon
())
.
teamIcon
(
team
.
getTeamIcon
())
.
teamName
(
team
.
getTeamName
())
.
teamName
(
team
.
getTeamName
())
.
teamNameEn
(
team
.
getTeamNameEn
())
.
teamNameEn
(
team
.
getTeamNameEn
())
.
teamType
(
sports
.
getTeamType
().
equals
(
"club"
)
?
"俱乐部"
:
"国家队"
)
.
teamType
(
sports
==
null
?
"未知"
:
sports
.
getTeamType
().
equals
(
"club"
)
?
"俱乐部"
:
"国家队"
)
.
build
())
.
build
())
.
teamPlayers
(
teamPlayers
.
stream
().
map
(
b
->
{
.
teamPlayers
(
teamPlayers
.
stream
().
map
(
b
->
{
Integer
market
=
b
.
getMarketValue
();
Integer
market
=
b
.
getMarketValue
();
...
...
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