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 2e6da54c
authored
Dec 01, 2023
by
Ren Ping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:自动派单同步Bean
1 parent
13a582d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
project-dispatch/src/main/java/com/dituhui/pea/dispatch/entity/OrderInfo.java
project-dispatch/src/main/java/com/dituhui/pea/dispatch/entity/OrderInfo.java
View file @
2e6da54
...
...
@@ -218,4 +218,34 @@ public class OrderInfo implements Serializable {
@Column
(
name
=
"appoint_engineer_codes"
)
private
String
appointEngineerCodes
;
/**
* 辅助工程师到达里程(米)
*/
@Column
(
name
=
"sub_distance"
)
private
Integer
subDistance
;
/**
* 辅助工程师到达耗时
*/
@Column
(
name
=
"sub_elapsed"
)
private
Integer
subElapsed
;
/**
* 辅助工程师计划开始时间
*/
@JsonDeserialize
(
using
=
LocalDateTimeDeserializer
.
class
)
@JsonSerialize
(
using
=
LocalDateTimeSerializer
.
class
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
@Column
(
name
=
"sub_plan_start_time"
)
private
LocalDateTime
subPlanStartTime
;
/**
* 辅助工程师计划结束时间
*/
@JsonDeserialize
(
using
=
LocalDateTimeDeserializer
.
class
)
@JsonSerialize
(
using
=
LocalDateTimeSerializer
.
class
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
@Column
(
name
=
"sub_plan_end_time"
)
private
LocalDateTime
subPlanEndTime
;
}
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