Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
HYH.APSJ
Project
Project
Details
Activity
Releases
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
佟礼
HYH.APSJ
Commits
8ada9aff
Commit
8ada9aff
authored
Sep 07, 2026
by
DESKTOP-VKRD9QF\Administration
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
分页
parent
b70a4972
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
0 deletions
+55
-0
ResourceSummaryVO.java
src/main/java/com/aps/entity/Gantt/ResourceSummaryVO.java
+21
-0
ScheduledOrderVO.java
src/main/java/com/aps/entity/Gantt/ScheduledOrderVO.java
+34
-0
No files found.
src/main/java/com/aps/entity/Gantt/ResourceSummaryVO.java
0 → 100644
View file @
8ada9aff
package
com
.
aps
.
entity
.
Gantt
;
import
com.aps.entity.basic.ShiftVO
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
@Data
@Accessors
(
chain
=
true
)
public
class
ResourceSummaryVO
{
private
long
id
;
private
String
name
;
private
String
type
;
private
Integer
change
;
private
Integer
split
;
private
long
departmentId
;
private
String
departmentName
;
private
String
shopName
;
private
long
shopId
;
private
String
code
;
private
ShiftVO
shift
;
}
src/main/java/com/aps/entity/Gantt/ScheduledOrderVO.java
0 → 100644
View file @
8ada9aff
package
com
.
aps
.
entity
.
Gantt
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
import
java.time.LocalDateTime
;
@Data
@Accessors
(
chain
=
true
)
@Schema
(
name
=
"ScheduledOrderVO"
,
description
=
"Scheduled order summary"
)
public
class
ScheduledOrderVO
{
private
String
id
;
private
String
productName
;
private
Integer
productType
;
private
String
productId
;
private
double
quantity
;
private
String
code
;
@JsonFormat
(
timezone
=
"GMT+8"
,
pattern
=
"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"
)
private
LocalDateTime
startDate
;
@JsonFormat
(
timezone
=
"GMT+8"
,
pattern
=
"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"
)
private
LocalDateTime
endDate
;
private
Long
shopId
;
private
String
shopName
;
private
String
status
;
private
Integer
headerId
;
private
String
headerName
;
private
String
orderCode
;
}
\ No newline at end of file
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