Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
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
fangxinjiang
yifu-mvp
Commits
5c6ed2ef
Commit
5c6ed2ef
authored
Oct 25, 2024
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.0 优化
parent
25ccbb1d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
TCheckBankNoServiceImpl.java
...d/plus/v1/check/service/impl/TCheckBankNoServiceImpl.java
+5
-1
TCheckMobileServiceImpl.java
...d/plus/v1/check/service/impl/TCheckMobileServiceImpl.java
+6
-2
No files found.
yifu-check/yifu-check-biz/src/main/java/com/yifu/cloud/plus/v1/check/service/impl/TCheckBankNoServiceImpl.java
View file @
5c6ed2ef
...
...
@@ -332,7 +332,11 @@ public class TCheckBankNoServiceImpl extends ServiceImpl<TCheckBankNoMapper, TCh
}
}
}
else
{
noCurlist
.
add
(
check
);
if
(
check
.
getBankNo
().
length
()
>
50
)
{
bankMap
.
put
(
check
.
getBankNo
()
+
CommonConstants
.
DOWN_LINE_STRING
+
check
.
getName
(),
false
);
}
else
{
noCurlist
.
add
(
check
);
}
}
}
List
<
TCheckBankNo
>
saveList
=
new
ArrayList
<>();
...
...
yifu-check/yifu-check-biz/src/main/java/com/yifu/cloud/plus/v1/check/service/impl/TCheckMobileServiceImpl.java
View file @
5c6ed2ef
...
...
@@ -271,8 +271,12 @@ public class TCheckMobileServiceImpl extends ServiceImpl<TCheckMobileMapper, TCh
if
(
cur
!=
null
)
{
backMap
.
put
(
check
,
cur
);
}
else
{
phones
.
append
(
check
).
append
(
CommonConstants
.
COMMA_STRING
);
noCurlist
.
add
(
check
);
if
(
check
.
length
()
>
11
)
{
backMap
.
put
(
check
,
false
);
}
else
{
phones
.
append
(
check
).
append
(
CommonConstants
.
COMMA_STRING
);
noCurlist
.
add
(
check
);
}
}
}
if
(
phones
.
length
()
>
0
)
{
...
...
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