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 08d9eafd
authored
Jun 19, 2023
by
王力
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature_mvp616_wangl' into 'develop'
修改 See merge request !108
2 parents
d5b66177
1ca3911e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
project-order/src/main/java/com/alibaba/cloud/integration/order/service/impl/OrderAssignImpl.java
project-order/src/main/java/com/alibaba/cloud/integration/order/service/impl/OrderAssignImpl.java
View file @
08d9eaf
...
...
@@ -163,9 +163,9 @@ public class OrderAssignImpl implements OrderAssign {
List
<
OrderAssignRecommendResp
.
Timeline
>
items
=
new
ArrayList
<>();
for
(
OrderAppointment
order:
orders
){
OrderAssignRecommendResp
.
Timeline
item
=
new
OrderAssignRecommendResp
.
Timeline
();
item
.
setStartTime
(
""
);
item
.
setEndTime
(
""
);
item
.
setType
(
""
);
item
.
setStartTime
(
this
.
Timestamp2Datetime
(
order
.
getExpectStartTime
(),
"HH:mm"
)
);
item
.
setEndTime
(
this
.
Timestamp2Datetime
(
order
.
getExpectEndTime
(),
"HH:mm"
)
);
item
.
setType
(
order
.
getStatus
()
);
items
.
add
(
item
);
}
...
...
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