Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 69594d07
authored
Jul 07, 2023
by
丁伟峰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
to test
1 parent
3a58ffb9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
project-order/src/main/java/com/dituhui/pea/order/service/impl/BusinessTeamServiceImpl.java
project-order/src/main/java/com/dituhui/pea/order/service/impl/BusinessTeamServiceImpl.java
View file @
69594d0
...
...
@@ -62,7 +62,7 @@ public class BusinessTeamServiceImpl implements BusinessTeamService {
private
List
<
String
>
getWorkdaysChinese
(
String
workDays
){
// 将 1,2,3 转换为 周一、周二、周三
return
Arrays
.
stream
(
workDays
.
split
(
","
)).
map
(
e
->{
return
Week
.
valueOf
(
e
).
toChinese
(
"周"
);
return
Week
.
of
(
Integer
.
valueOf
(
e
)
).
toChinese
(
"周"
);
}).
collect
(
Collectors
.
toList
());
}
@Override
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment