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
103bc1e6
Commit
103bc1e6
authored
Dec 14, 2020
by
tangf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改消息发送
parent
b4d9e92e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
FinanceServiceImpl.java
...ngding/web/authority/service/impl/FinanceServiceImpl.java
+1
-0
WithdrawalResVo.java
.../com/pangding/web/authority/vo/resvo/WithdrawalResVo.java
+11
-0
No files found.
src/main/java/com/pangding/web/authority/service/impl/FinanceServiceImpl.java
View file @
103bc1e6
...
...
@@ -37,6 +37,7 @@ public class FinanceServiceImpl implements FinanceService {
throw
new
CodeException
(
"未查到该公司数据"
);
}
resVo
.
setWithdrawTotalCash
(
extendVo
.
getWithdrawTotalCash
());
resVo
.
setCompanyExtend
(
extendVo
);
List
<
CompanyBankCardVo
>
companyBankCardVoList
=
companyBankCardDaoImpl
.
loadList
(
reqVo
,
CompanyBankCardVo
.
class
);
if
(
null
==
companyBankCardVoList
||
companyBankCardVoList
.
isEmpty
()){
...
...
src/main/java/com/pangding/web/authority/vo/resvo/WithdrawalResVo.java
View file @
103bc1e6
package
com
.
pangding
.
web
.
authority
.
vo
.
resvo
;
import
com.pangding.web.vo.system.pd.company.CompanyBankCardVo
;
import
com.pangding.web.vo.system.pd.company.CompanyExtendVo
;
import
java.util.List
;
...
...
@@ -11,6 +12,8 @@ import java.util.List;
public
class
WithdrawalResVo
{
private
Double
withdrawTotalCash
;
private
CompanyExtendVo
companyExtend
;
private
List
<
CompanyBankCardVo
>
bankCardVoList
;
public
Double
getWithdrawTotalCash
()
{
...
...
@@ -28,4 +31,12 @@ public class WithdrawalResVo {
public
void
setBankCardVoList
(
List
<
CompanyBankCardVo
>
bankCardVoList
)
{
this
.
bankCardVoList
=
bankCardVoList
;
}
public
CompanyExtendVo
getCompanyExtend
()
{
return
companyExtend
;
}
public
void
setCompanyExtend
(
CompanyExtendVo
companyExtend
)
{
this
.
companyExtend
=
companyExtend
;
}
}
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