Toggle navigation
Toggle navigation
This project
Loading...
Sign in
jiujian
/
client-customer-order-api
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
zhuyifan
2025-04-16 16:04:45 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2c166ecda94da77b70286a8b182f5a66e3b7b4fd
2c166ecd
1 parent
3a158010
fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
src/main/java/com/infoloop/tianting/service/impl/DinerServiceImpl.java
src/main/java/com/infoloop/tianting/service/impl/DinerServiceImpl.java
View file @
2c166ec
...
...
@@ -129,6 +129,7 @@ public class DinerServiceImpl implements DinerService {
.
setShouldUpdateClientId
(
true
).
setClientId
(
singleClientRpcResponse
.
getId
())
.
setShouldUpdateClassId
(
updateDinerDTO
.
getClassId
()
!=
null
).
setClassId
(
updateDinerDTO
.
getClassId
()
==
null
?
diner
.
getClassId
()
:
updateDinerDTO
.
getClassId
())
.
setShouldUpdateName
(
updateDinerDTO
.
getName
()
!=
null
).
setName
(
updateDinerDTO
.
getName
()
==
null
?
diner
.
getName
()
:
updateDinerDTO
.
getName
())
.
setShouldUpdateStudentNo
(
updateDinerDTO
.
getStudentNo
()
!=
null
).
setStudentNo
(
updateDinerDTO
.
getStudentNo
()
==
null
?
diner
.
getStudentNo
()
:
updateDinerDTO
.
getStudentNo
())
.
build
());
}
...
...
Please
register
or
login
to post a comment