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
90eb60a5
Commit
90eb60a5
authored
Nov 09, 2021
by
tangfang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改注册判断银行卡
parent
e8f9820e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
FinanceController.java
.../pangding/web/authority/controller/FinanceController.java
+0
-1
CompanyServiceImpl.java
...ngding/web/authority/service/impl/CompanyServiceImpl.java
+2
-1
FinanceServiceImpl.java
...ngding/web/authority/service/impl/FinanceServiceImpl.java
+0
-2
No files found.
src/main/java/com/pangding/web/authority/controller/FinanceController.java
View file @
90eb60a5
...
@@ -97,7 +97,6 @@ public class FinanceController {
...
@@ -97,7 +97,6 @@ public class FinanceController {
.
notBlankCheck
(
"companyId"
,
req
.
getCompanyId
())
.
notBlankCheck
(
"companyId"
,
req
.
getCompanyId
())
.
notBlankCheck
(
"companyName"
,
req
.
getCompanyName
())
.
notBlankCheck
(
"companyName"
,
req
.
getCompanyName
())
.
notBlankCheck
(
"bankId"
,
req
.
getBankId
())
.
notBlankCheck
(
"bankId"
,
req
.
getBankId
())
.
notBlankCheck
(
"bankCardCode"
,
req
.
getBankCardCode
())
.
notBlankCheck
(
"orderMoney"
,
req
.
getOrderMoney
())
.
notBlankCheck
(
"orderMoney"
,
req
.
getOrderMoney
())
.
checkException
();
.
checkException
();
return
financeService
.
applyWithdrawal
(
req
);
return
financeService
.
applyWithdrawal
(
req
);
...
...
src/main/java/com/pangding/web/authority/service/impl/CompanyServiceImpl.java
View file @
90eb60a5
...
@@ -233,6 +233,7 @@ public class CompanyServiceImpl implements CompanyService {
...
@@ -233,6 +233,7 @@ public class CompanyServiceImpl implements CompanyService {
GetEmptyRolesReqVo
getEmptyRolesReqVo
=
new
GetEmptyRolesReqVo
();
GetEmptyRolesReqVo
getEmptyRolesReqVo
=
new
GetEmptyRolesReqVo
();
List
<
RoleVo
>
roleVoList
=
roleDao
.
getEmptyRoles
(
getEmptyRolesReqVo
);
List
<
RoleVo
>
roleVoList
=
roleDao
.
getEmptyRoles
(
getEmptyRolesReqVo
);
resVo
.
setRoleVoList
(
roleVoList
);
resVo
.
setRoleVoList
(
roleVoList
);
System
.
out
.
println
(
"======1111====="
+
JsonHelper
.
serialize
(
resVo
));
return
resVo
;
return
resVo
;
}
}
...
@@ -307,7 +308,7 @@ public class CompanyServiceImpl implements CompanyService {
...
@@ -307,7 +308,7 @@ public class CompanyServiceImpl implements CompanyService {
// 查询公司用户信息和角色信息
// 查询公司用户信息和角色信息
}
}
System
.
out
.
println
(
"==========="
+
JsonHelper
.
serialize
(
resVo
));
return
resVo
;
return
resVo
;
}
}
...
...
src/main/java/com/pangding/web/authority/service/impl/FinanceServiceImpl.java
View file @
90eb60a5
...
@@ -23,7 +23,6 @@ import com.pangding.web.vo.system.res.company.CompanyResVo;
...
@@ -23,7 +23,6 @@ import com.pangding.web.vo.system.res.company.CompanyResVo;
import
com.yanzuoguang.util.base.ObjectHelper
;
import
com.yanzuoguang.util.base.ObjectHelper
;
import
com.yanzuoguang.util.exception.CodeException
;
import
com.yanzuoguang.util.exception.CodeException
;
import
com.yanzuoguang.util.helper.DateHelper
;
import
com.yanzuoguang.util.helper.DateHelper
;
import
com.yanzuoguang.util.helper.JsonHelper
;
import
com.yanzuoguang.util.helper.StringHelper
;
import
com.yanzuoguang.util.helper.StringHelper
;
import
com.yanzuoguang.util.vo.PageSizeData
;
import
com.yanzuoguang.util.vo.PageSizeData
;
import
com.yanzuoguang.util.vo.ResponseResult
;
import
com.yanzuoguang.util.vo.ResponseResult
;
...
@@ -219,7 +218,6 @@ public class FinanceServiceImpl implements FinanceService {
...
@@ -219,7 +218,6 @@ public class FinanceServiceImpl implements FinanceService {
capitalFlowVo
.
setTime
(
DateHelper
.
getNow
());
capitalFlowVo
.
setTime
(
DateHelper
.
getNow
());
capitalFlowVo
.
setStatus
(
0
);
capitalFlowVo
.
setStatus
(
0
);
capitalFlowDao
.
save
(
capitalFlowVo
);
capitalFlowDao
.
save
(
capitalFlowVo
);
System
.
out
.
println
(
"========"
+
JsonHelper
.
serialize
(
capitalFlowVo
));
CashWithdrawalReqVo
cashWithdrawalReqVo
=
new
CashWithdrawalReqVo
();
CashWithdrawalReqVo
cashWithdrawalReqVo
=
new
CashWithdrawalReqVo
();
ObjectHelper
.
writeWithFrom
(
cashWithdrawalReqVo
,
capitalFlowVo
);
ObjectHelper
.
writeWithFrom
(
cashWithdrawalReqVo
,
capitalFlowVo
);
cashWithdrawalReqVo
.
setActualType
(
companyResVo
.
getWithdrawType
());
cashWithdrawalReqVo
.
setActualType
(
companyResVo
.
getWithdrawType
());
...
...
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