Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
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
haoban3.0
haoban-manage3.0
Commits
c00cf801
Commit
c00cf801
authored
Feb 15, 2023
by
jinxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
记录单个转移的成功日志
parent
ecc93ed9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
TransferActiveCodeDTO.java
.../com/gic/haoban/manage/api/dto/TransferActiveCodeDTO.java
+4
-2
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/dto/TransferActiveCodeDTO.java
View file @
c00cf801
...
...
@@ -82,8 +82,10 @@ public class TransferActiveCodeDTO implements Serializable {
//记录单个转移的成功日志
if
(
CollUtil
.
isNotEmpty
(
this
.
successList
)
&&
this
.
totalNum
==
1
){
Map
<
String
,
String
>
stringMap
=
this
.
successList
.
get
(
0
);
log
.
append
(
"将"
+
stringMap
.
get
(
"handoverStaffName"
)+
"-"
+
stringMap
.
get
(
"handoverStaffPhone"
)==
null
?
""
:
stringMap
.
get
(
"handoverStaffPhone"
)+
"的许可手动转移给"
+
stringMap
.
get
(
"takeoverStaffName"
)+
"-"
+
stringMap
.
get
(
"takeoverStaffPhone"
)==
null
?
""
:
stringMap
.
get
(
"takeoverStaffPhone"
));
String
handoverStaffPhone
=
null
==
stringMap
.
get
(
"handoverStaffPhone"
)?
""
:
stringMap
.
get
(
"handoverStaffPhone"
);
String
takeoverStaffPhone
=
null
==
stringMap
.
get
(
"takeoverStaffPhone"
)?
""
:
stringMap
.
get
(
"takeoverStaffPhone"
);
log
.
append
(
"将"
+
stringMap
.
get
(
"handoverStaffName"
)+
"-"
+
handoverStaffPhone
+
"的许可手动转移给"
+
stringMap
.
get
(
"takeoverStaffName"
)+
"-"
+
takeoverStaffPhone
);
return
log
.
toString
();
}
log
.
append
(
"共需转移"
+
this
.
totalNum
+
",成功"
+
this
.
successNum
+
",失败"
+
this
.
failedNum
+
"。"
);
...
...
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