Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bailuntec-cost
Overview
Overview
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
huluobin
bailuntec-cost
Commits
a4eca77d
Commit
a4eca77d
authored
Oct 09, 2021
by
liyanlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
a60dda70
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
12 deletions
+14
-12
UserCostFinansysServiceImpl.java
...module/cost/service/impl/UserCostFinansysServiceImpl.java
+14
-12
No files found.
cost-service/src/main/java/com/blt/other/module/cost/service/impl/UserCostFinansysServiceImpl.java
View file @
a4eca77d
...
...
@@ -55,7 +55,7 @@ public class UserCostFinansysServiceImpl implements UserCostFinansysService {
}
@Override
public
UserCostFinansysDomain
createFinanceRecordByCostDomain
(
CostDomain
costDomain
){
public
UserCostFinansysDomain
createFinanceRecordByCostDomain
(
CostDomain
costDomain
)
{
return
setParams
(
costDomain
);
}
...
...
@@ -87,17 +87,19 @@ public class UserCostFinansysServiceImpl implements UserCostFinansysService {
@Override
public
List
<
UserCostFinansysDomain
>
getAllFinancesRecord
(
String
key
)
{
String
[]
tempKey
=
key
.
split
(
"-"
);
if
(
tempKey
!=
null
&&
tempKey
.
length
==
4
){
//4k需求 付款单位-付款银行-付款账户-账户持卡人 格式
return
userCostFinansysDao
.
selectList
(
new
LambdaQueryWrapper
<
UserCostFinansysDomain
>()
.
eq
(
UserCostFinansysDomain:
:
getBankName
,
tempKey
[
1
])
.
eq
(
UserCostFinansysDomain:
:
getBankCard
,
tempKey
[
2
])
.
eq
(
UserCostFinansysDomain:
:
getBankCardUser
,
tempKey
[
3
])
.
eq
(
UserCostFinansysDomain:
:
getBankCompany
,
tempKey
[
0
])
.
last
(
" limit 10"
)
);
if
(
key
!=
null
)
{
String
[]
tempKey
=
key
.
split
(
"-"
);
if
(
tempKey
!=
null
&&
tempKey
.
length
==
4
)
{
//4k需求 付款单位-付款银行-付款账户-账户持卡人 格式
return
userCostFinansysDao
.
selectList
(
new
LambdaQueryWrapper
<
UserCostFinansysDomain
>()
.
eq
(
UserCostFinansysDomain:
:
getBankName
,
tempKey
[
1
])
.
eq
(
UserCostFinansysDomain:
:
getBankCard
,
tempKey
[
2
])
.
eq
(
UserCostFinansysDomain:
:
getBankCardUser
,
tempKey
[
3
])
.
eq
(
UserCostFinansysDomain:
:
getBankCompany
,
tempKey
[
0
])
.
last
(
" limit 10"
)
);
}
}
List
<
UserCostFinansysDomain
>
list
=
userCostFinansysDao
.
selectAll
(
key
);
return
list
;
...
...
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