Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
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
fangxinjiang
yifu-mvp
Commits
7eba426d
Commit
7eba426d
authored
Mar 30, 2024
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
明细接口改造
parent
f393a1a2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
TPaymentInfoServiceImpl.java
.../v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java
+3
-3
TPaymentInfoMapper.xml
...cial-biz/src/main/resources/mapper/TPaymentInfoMapper.xml
+1
-1
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java
View file @
7eba426d
...
...
@@ -3581,7 +3581,7 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
tPaymentInfo
.
setIncomeCollectFlag
(
viewVo
.
getIncomeCollectFlag
());
baseMapper
.
updateStatusById
(
tPaymentInfo
);
}
else
{
tPaymentInfo
.
setPaySettleFlag
(
viewVo
.
getPaySettleFlag
()
);
tPaymentInfo
.
setPaySettleFlag
(
CommonConstants
.
ZERO_STRING
);
tPaymentInfo
.
setPayCollectFlag
(
viewVo
.
getPayCollectFlag
());
baseMapper
.
updateStatusById
(
tPaymentInfo
);
...
...
@@ -3598,7 +3598,7 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
paymentInfo
.
setIncomeSettleFlag
(
viewVo
.
getIncomeSettleFlag
());
paymentInfo
.
setIncomeCollectFlag
(
viewVo
.
getIncomeCollectFlag
());
}
else
{
paymentInfo
.
setPaySettleFlag
(
viewVo
.
getPaySettleFlag
()
);
paymentInfo
.
setPaySettleFlag
(
CommonConstants
.
ZERO_STRING
);
paymentInfo
.
setPayCollectFlag
(
viewVo
.
getPayCollectFlag
());
}
baseMapper
.
updateStatusById
(
paymentInfo
);
...
...
@@ -3614,7 +3614,7 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
library
.
setIncomeSettleFlag
(
viewVo
.
getIncomeSettleFlag
());
library
.
setIncomeCollectFlag
(
viewVo
.
getIncomeCollectFlag
());
}
else
{
library
.
setPaySettleFlag
(
viewVo
.
getPaySettleFlag
()
);
library
.
setPaySettleFlag
(
CommonConstants
.
ZERO_STRING
);
library
.
setPayCollectFlag
(
viewVo
.
getPayCollectFlag
());
}
tForecastLibraryMapper
.
updateForecastStatusById
(
library
);
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TPaymentInfoMapper.xml
View file @
7eba426d
...
...
@@ -2235,7 +2235,7 @@
INCOME_COLLECT_FLAG = #{tPaymentInfo.incomeCollectFlag},
</if>
<if
test=
"tPaymentInfo.paySettleFlag != null and tPaymentInfo.paySettleFlag.trim() != ''"
>
PAY_SETTLE_FLAG =
'0'
,
PAY_SETTLE_FLAG =
#{tPaymentInfo.paySettleFlag}
,
</if>
<if
test=
"tPaymentInfo.payCollectFlag != null and tPaymentInfo.payCollectFlag.trim() != ''"
>
PAY_COLLECT_FLAG = #{tPaymentInfo.payCollectFlag},
...
...
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