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 e95c21ec
authored
Jun 15, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增接口范湖Resp
1 parent
bad6c6a0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 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/ScheduleOverviewResp.java
project-order/src/main/java/com/alibaba/cloud/integration/order/dto/ScheduleEngineerOverviewResp.java
0 → 100644
View file @
e95c21e
package
com
.
alibaba
.
cloud
.
integration
.
order
.
dto
;
import
lombok.Data
;
@Data
public
class
ScheduleEngineerOverviewResp
{
}
project-order/src/main/java/com/alibaba/cloud/integration/order/dto/ScheduleOverviewResp.java
0 → 100644
View file @
e95c21e
package
com
.
alibaba
.
cloud
.
integration
.
order
.
dto
;
import
lombok.Data
;
import
java.util.List
;
@Data
public
class
ScheduleOverviewResp
{
private
long
total
;
private
long
pages
;
private
long
pageCurrent
;
private
long
pageSize
;
private
List
<
Team
>
content
;
@Data
public
static
class
Team
{
private
String
name
;
private
String
value
;
private
String
level
;
private
String
orderDesc
;
private
String
distanceDes
;
private
OrderSum
order
;
private
List
<
Item
>
children
;
}
@Data
public
static
class
Item
{
private
String
name
;
private
String
value
;
private
String
level
;
private
String
orderDesc
;
private
String
distanceDes
;
private
OrderSum
order
;
}
@Data
public
static
class
OrderSum
{
private
Integer
total
;
private
Integer
installNum
;
private
Integer
fixNum
;
private
Integer
designNum
;
private
Integer
cleanNum
;
}
}
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