Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-performance
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
姜武杰
clx-performance
Commits
251d5724
提交
251d5724
authored
3月 05, 2024
作者:
huyufan
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/v10.7_borrowing_and_repayment_20240118' into test
上级
b20a3d23
47125061
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
11 行增加
和
2 行删除
+11
-2
OwnerPaymentVO.java
...om/clx/performance/vo/pc/loan/carrier/OwnerPaymentVO.java
+3
-0
OwnerPaymentDaoImpl.java
...om/clx/performance/dao/impl/loan/OwnerPaymentDaoImpl.java
+2
-0
OwnerLoanAccountServiceImpl.java
...rmance/service/impl/loan/OwnerLoanAccountServiceImpl.java
+2
-2
OwnerPaymentServiceImpl.java
...erformance/service/impl/loan/OwnerPaymentServiceImpl.java
+4
-0
没有找到文件。
performance-api/src/main/java/com/clx/performance/vo/pc/loan/carrier/OwnerPaymentVO.java
浏览文件 @
251d5724
...
...
@@ -37,6 +37,9 @@ public class OwnerPaymentVO{
@ApiModelProperty
(
"交易流水号(第三方)"
)
private
String
runningWaterOpenNo
;
@ApiModelProperty
(
"商户流水"
)
private
String
merchantRunningWaterNo
;
@ApiModelProperty
(
"付款单号"
)
private
Long
paymentNo
;
...
...
performance-web/src/main/java/com/clx/performance/dao/impl/loan/OwnerPaymentDaoImpl.java
浏览文件 @
251d5724
...
...
@@ -52,6 +52,8 @@ public class OwnerPaymentDaoImpl extends BaseDaoImpl<OwnerPaymentMapper, OwnerPa
public
void
updateStatusAndMerchantRunningWaterNo
(
OwnerPayment
ownerPayment
)
{
update
(
lUdWrapper
().
set
(
OwnerPayment:
:
getStatus
,
ownerPayment
.
getStatus
())
.
set
(
OwnerPayment:
:
getMerchantRunningWaterNo
,
ownerPayment
.
getMerchantRunningWaterNo
())
.
set
(
OwnerPayment:
:
getOperateBy
,
ownerPayment
.
getOperateBy
())
.
set
(
OwnerPayment:
:
getOperateTime
,
ownerPayment
.
getOperateTime
())
.
eq
(
OwnerPayment:
:
getId
,
ownerPayment
.
getId
())
);
}
...
...
performance-web/src/main/java/com/clx/performance/service/impl/loan/OwnerLoanAccountServiceImpl.java
浏览文件 @
251d5724
...
...
@@ -115,8 +115,8 @@ public class OwnerLoanAccountServiceImpl implements OwnerLoanAccountService {
if
(
OwnerLoanRecordEnum
.
PayChannel
.
ORDER_DIRECT_PAY
.
getCode
().
equals
(
param
.
getPayChannel
()))
{
// 订单支付
NbBankOrderPayResultVO
orderPayResultVO
=
bankService
.
orderDirectPay
(
ownerRepayment
.
getRepaymentNo
(),
"还款单"
,
ownerRepayment
.
getRepaymentBalance
().
intValue
(),
owner
LoanRecord
.
getLendingPartyBankCode
(),
owner
LoanRecord
.
getLendingPartyAccount
(),
ownerBindCardRecord
.
getAccountBankName
());
ownerRepayment
.
getRepaymentBalance
().
intValue
(),
owner
BindCardRecord
.
getOpenAccountBankNumber
(),
owner
BindCardRecord
.
getBankCardNumber
(),
ownerBindCardRecord
.
getAccountBankName
());
ownerRepayment
.
setRunningWaterOpenNo
(
orderPayResultVO
.
getTransSeqNo
());
ownerRepayment
.
setMerchantRunningWaterNo
(
orderPayResultVO
.
getMerSeqNo
());
...
...
performance-web/src/main/java/com/clx/performance/service/impl/loan/OwnerPaymentServiceImpl.java
浏览文件 @
251d5724
...
...
@@ -18,11 +18,13 @@ import com.clx.performance.vo.pc.loan.carrier.CarrierOwnerPaymentVO;
import
com.clx.performance.vo.pc.loan.carrier.OwnerPaymentVO
;
import
com.msl.common.exception.ServiceSystemException
;
import
com.msl.common.result.Result
;
import
com.msl.user.utils.TokenUtil
;
import
lombok.AllArgsConstructor
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.stereotype.Service
;
import
java.time.LocalDateTime
;
import
java.util.List
;
/**
...
...
@@ -85,6 +87,8 @@ public class OwnerPaymentServiceImpl implements OwnerPaymentService {
}
ownerPayment
.
setMerchantRunningWaterNo
(
merSeqNo
);
ownerPayment
.
setStatus
(
OwnerPaymentEnum
.
Status
.
PAYING
.
getCode
());
ownerPayment
.
setOperateBy
(
TokenUtil
.
getLoginUserInfo
().
getUserName
());
ownerPayment
.
setOperateTime
(
LocalDateTime
.
now
());
ownerPaymentDao
.
updateStatusAndMerchantRunningWaterNo
(
ownerPayment
);
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论