Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
Project
Project
Details
Activity
Releases
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
TCM
tcm-system
Commits
7b9f4dbc
Commit
7b9f4dbc
authored
Aug 16, 2021
by
tangfang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改注册判断银行卡
parent
91c967f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ComputerRegisterController.java
.../web/authority/controller/ComputerRegisterController.java
+2
-2
CompanyMsgServiceImpl.java
...ing/web/authority/service/impl/CompanyMsgServiceImpl.java
+1
-1
No files found.
src/main/java/com/pangding/web/authority/controller/ComputerRegisterController.java
View file @
7b9f4dbc
...
...
@@ -119,10 +119,10 @@ public class ComputerRegisterController {
.
notBlankCheck
(
"contactPhone"
,
reqVo
.
getContactPhone
())
.
notBlankCheck
(
"bankName"
,
reqVo
.
getBankName
())
.
notBlankCheck
(
"bankCardCode"
,
reqVo
.
getBankCardCode
())
.
notNumberCheck
(
"bankCardCode"
,
reqVo
.
getBankCardCode
())
//
.notNumberCheck("bankCardCode",reqVo.getBankCardCode())
.
notBlankCheck
(
"bankAddress"
,
reqVo
.
getBankAddress
())
.
notBlankCheck
(
"bankCode"
,
reqVo
.
getBankCode
())
.
notNumberCheck
(
"bankCode"
,
reqVo
.
getBankCode
())
//
.notNumberCheck("bankCode",reqVo.getBankCode())
.
checkException
();
};
...
...
src/main/java/com/pangding/web/authority/service/impl/CompanyMsgServiceImpl.java
View file @
7b9f4dbc
...
...
@@ -80,6 +80,7 @@ public class CompanyMsgServiceImpl implements CompanyMsgService {
UserReqVo
userReqVo
=
new
UserReqVo
();
userReqVo
.
setCompanyId
(
reqVo
.
getCompanyId
());
userReqVo
.
setReceiveFlag
(
1
);
List
<
UserResVo
>
userResList
=
userDao
.
loadList
(
userReqVo
,
UserResVo
.
class
);
for
(
int
i
=
0
;
i
<
userResList
.
size
();
i
++)
{
...
...
@@ -87,7 +88,6 @@ public class CompanyMsgServiceImpl implements CompanyMsgService {
partnerProcedure
.
sendSoundContent
(
userResList
.
get
(
i
).
getId
(),
soundContentVo
);
}
}
return
ResponseResult
.
result
(
"处理成功"
);
}
...
...
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