Toggle navigation
Toggle navigation
This project
Loading...
Sign in
jiujian
/
client-customer-order-service
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
wangyingyang
2025-03-14 15:19:12 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
217069f35f7fff56e837d3c9a637f31ee7af75ff
217069f3
1 parent
08f9d57e
fix
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
src/main/java/com/tianting/infoloop/utils/DbToProtoUtil.java
src/main/java/com/tianting/infoloop/utils/DbToProtoUtil.java
View file @
217069f
...
...
@@ -136,6 +136,10 @@ public class DbToProtoUtil {
protoBuilder
.
setSyncRoomNo
(
orderDb
.
getSyncRoomNo
());
}
if
(
orderDb
.
getPayTime
()
!=
null
)
{
protoBuilder
.
setPayTime
((
orderDb
.
getPayTime
().
toEpochSecond
(
ZoneOffset
.
UTC
)
*
1000
));
}
// 处理嵌套的CustomerNotice字段
if
(
orderDb
.
getCustomerNoticeJson
()!=
null
)
{
// Constructor<CustomerNotice> customerNoticeConstructor =
...
...
Please
register
or
login
to post a comment