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
b207ea5d
Commit
b207ea5d
authored
Nov 29, 2024
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.2 顺序
parent
1d84f372
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
EkpBankPayTask.java
...ava/com/yifu/cloud/plus/v1/ekp/entity/EkpBankPayTask.java
+6
-0
IcbcTransactionFlowIssueServiceImpl.java
...ekp/service/impl/IcbcTransactionFlowIssueServiceImpl.java
+1
-0
EkpBankPayTaskMapper.xml
...kp-biz/src/main/resources/mapper/EkpBankPayTaskMapper.xml
+3
-1
No files found.
yifu-ekp/yifu-ekp-api/src/main/java/com/yifu/cloud/plus/v1/ekp/entity/EkpBankPayTask.java
View file @
b207ea5d
...
...
@@ -259,6 +259,12 @@ public class EkpBankPayTask {
@Schema
(
description
=
"MD码"
)
private
String
fdMdCode
;
@ExcelAttribute
(
name
=
"失败原因"
,
maxLength
=
500
)
@Length
(
max
=
500
,
message
=
"失败原因不能超过500个字符"
)
@ExcelProperty
(
"失败原因"
)
@Schema
(
description
=
"失败原因"
)
private
String
fdErrorMsg
;
// 明细条数
@TableField
(
exist
=
false
)
private
String
num
;
...
...
yifu-ekp/yifu-ekp-biz/src/main/java/com/yifu/cloud/plus/v1/ekp/service/impl/IcbcTransactionFlowIssueServiceImpl.java
View file @
b207ea5d
...
...
@@ -910,6 +910,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
main
=
new
EkpBankPayTask
();
main
.
setFdId
(
vo
.
getFdId
());
main
.
setFdGrantStatus
(
"拒绝授权"
);
main
.
setFdErrorMsg
(
responseV1
.
getErrordesc
());
ekpBankPayTaskService
.
updateById
(
main
);
// 更新明细状态为 发放失败,原因为拒绝授权
//ekpBankGrantDetailService.updateStatusByGrantFail(vo.getFdId())
...
...
yifu-ekp/yifu-ekp-biz/src/main/resources/mapper/EkpBankPayTaskMapper.xml
View file @
b207ea5d
...
...
@@ -53,6 +53,7 @@
<result
property=
"fdWxNo"
column=
"fd_wx_no"
/>
<result
property=
"fdMdCode"
column=
"fd_md_dcode"
/>
<result
property=
"fdErrorMsg"
column=
"fd_error_msg"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
a.fd_id,
...
...
@@ -82,7 +83,8 @@
a.fd_fail_num,
a.fd_grant_num,
a.fd_wx_no,
a.fd_md_dcode
a.fd_md_dcode,
a.fd_error_msg
</sql>
<!-- 获取发放中的主表,查询结果 -->
...
...
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