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 b5c25cd1
authored
Jun 16, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增接口response dto
1 parent
f2165cc7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
project-order/src/main/java/com/alibaba/cloud/integration/order/dto/ScheduleEngineerOverviewResp.java
project-order/src/main/java/com/alibaba/cloud/integration/order/dto/ScheduleEngineerOverviewResp.java
View file @
b5c25cd
...
...
@@ -2,6 +2,46 @@ package com.alibaba.cloud.integration.order.dto;
import
lombok.Data
;
import
java.util.List
;
@Data
public
class
ScheduleEngineerOverviewResp
{
private
String
title
;
private
String
engineerCode
;
private
String
startTime
;
private
String
endTime
;
private
List
<
Dynamic
>
dynamics
;
private
List
<
Timeline
>
timelines
;
private
List
<
Order
>
orders
;
@Data
public
static
class
Dynamic
{
private
String
label
;
private
String
value
;
}
@Data
public
static
class
Timeline
{
private
String
startTime
;
private
String
endTime
;
private
String
type
;
}
@Data
public
static
class
Order
{
private
String
orderId
;
private
String
location
;
private
String
type
;
private
String
skill
;
private
String
orderStatus
;
private
String
orderStatusName
;
private
Integer
distance
;
private
String
arriveTime
;
private
String
timeType
;
private
String
expectArriveDuration
;
private
String
arriveDuration
;
private
String
expectWorkDuration
;
private
String
workDuration
;
}
}
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