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
905af1bd
Commit
905af1bd
authored
Apr 17, 2023
by
tangfang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改用户二维码生成
parent
e9430324
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
CodeModelController.java
...ng/web/authority/controller/code/CodeModelController.java
+1
-1
PayFeign.java
src/main/java/com/pangding/web/authority/feign/PayFeign.java
+8
-0
CompanyServiceImpl.java
...ngding/web/authority/service/impl/CompanyServiceImpl.java
+6
-1
No files found.
src/main/java/com/pangding/web/authority/controller/code/CodeModelController.java
View file @
905af1bd
...
...
@@ -61,7 +61,7 @@ public class CodeModelController {
.
notBlankCheck
(
"codeType"
,
req
.
getCodeType
())
.
notBlankCheck
(
"codeModelName"
,
req
.
getCodeModelName
())
.
notBlankCheck
(
"codeModelLink"
,
req
.
getCodeModelLink
())
.
notBlankCheck
(
"codeModelImgUrl"
,
req
.
getCodeModelImgUrl
())
//
.notBlankCheck("codeModelImgUrl", req.getCodeModelImgUrl())
.
checkException
();
return
ResponseResult
.
result
(
codeModelService
.
saveCodeModel
(
req
));
}
...
...
src/main/java/com/pangding/web/authority/feign/PayFeign.java
View file @
905af1bd
...
...
@@ -31,6 +31,14 @@ public interface PayFeign {
@RequestMapping
(
value
=
"/setCompanyInfo"
,
method
=
RequestMethod
.
POST
)
ResponseResult
<
SaveCompanyReqVo
>
setCompanyInfo1
(
@RequestBody
SaveCompanyReqVo
req
);
/**
* 企业会员绑定对公户
* @param req
* @return
*/
@RequestMapping
(
value
=
"/bindCompanyAccount"
,
method
=
RequestMethod
.
POST
)
ResponseResult
<
CompanyBankCardReqVo
>
bindCompanyAccount
(
@RequestBody
CompanyBankCardReqVo
req
);
/**
* 绑定银行卡
* @param req
...
...
src/main/java/com/pangding/web/authority/service/impl/CompanyServiceImpl.java
View file @
905af1bd
...
...
@@ -668,7 +668,12 @@ public class CompanyServiceImpl implements CompanyService {
reqVo
.
setId
(
bankId
);
reqVo
.
setReservedPhone
(
reqVo
.
getPhone
());
reqVo
.
setStatus
(
0
);
ResponseResult
<
CompanyBankCardReqVo
>
result
=
payFeign
.
bindBack
(
reqVo
);
ResponseResult
<
CompanyBankCardReqVo
>
result
=
new
ResponseResult
<>();
if
(
2
==
reqVo
.
getType
()){
result
=
payFeign
.
bindCompanyAccount
(
reqVo
);
}
else
{
result
=
payFeign
.
bindBack
(
reqVo
);
}
if
(
null
==
result
||
!
"00"
.
equals
(
result
.
getCode
()))
{
throw
new
CodeException
(
"绑定银行卡失败,请重试"
);
}
...
...
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