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-03-12 09:24:39 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4d28714b236541c95179be608cf45dc182d4abe0
4d28714b
1 parent
ec5c977c
feat(ClientCustomerService): 添加更新房间号的操作记录类型
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
src/main/java/com/infoloop/tianting/logic/async/HisCustomerRoomNoTask.java
src/main/proto/ClientCustomerService.proto
src/main/java/com/infoloop/tianting/logic/async/HisCustomerRoomNoTask.java
View file @
4d28714
...
...
@@ -162,7 +162,7 @@ public class HisCustomerRoomNoTask {
return
ClientCustomerOperationRecordCreation
.
newBuilder
()
.
setClientCustomerId
(
customer
.
getCustomerId
())
.
setOperator
(
loginInfo
.
getName
())
.
setType
(
ClientCustomerOperationRecordTypeEnum
.
CLIENT_CUSTOMER_OPERATION_RECORD_TYPE_UPDATE
)
.
setType
(
ClientCustomerOperationRecordTypeEnum
.
CLIENT_CUSTOMER_OPERATION_RECORD_TYPE_UPDATE
_ROOM_NO
)
.
setShouldCreateOriginalJson
(
true
)
.
setOriginalJson
(
gson
.
toJson
(
originalJson
))
.
setShouldCreateAdjustJson
(
true
)
...
...
src/main/proto/ClientCustomerService.proto
View file @
4d28714
...
...
@@ -634,6 +634,7 @@ enum ClientCustomerOperationRecordTypeEnum {
CLIENT_CUSTOMER_OPERATION_RECORD_TYPE_UPDATE
=
2
;
CLIENT_CUSTOMER_OPERATION_RECORD_TYPE_BIND_MENUS
=
3
;
CLIENT_CUSTOMER_OPERATION_RECORD_TYPE_LEAVE_HOSPITAL
=
4
;
CLIENT_CUSTOMER_OPERATION_RECORD_TYPE_UPDATE_ROOM_NO
=
5
;
}
message
SingleClientCustomerOperationRecordRpcResponse
{
...
...
Please
register
or
login
to post a comment