Commit b207ea5d authored by hongguangwu's avatar hongguangwu

MVP1.7.2 顺序

parent 1d84f372
...@@ -259,6 +259,12 @@ public class EkpBankPayTask { ...@@ -259,6 +259,12 @@ public class EkpBankPayTask {
@Schema(description = "MD码") @Schema(description = "MD码")
private String fdMdCode; private String fdMdCode;
@ExcelAttribute(name = "失败原因", maxLength = 500)
@Length(max = 500, message = "失败原因不能超过500个字符")
@ExcelProperty("失败原因")
@Schema(description = "失败原因")
private String fdErrorMsg;
// 明细条数 // 明细条数
@TableField(exist = false) @TableField(exist = false)
private String num; private String num;
......
...@@ -910,6 +910,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn ...@@ -910,6 +910,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
main = new EkpBankPayTask(); main = new EkpBankPayTask();
main.setFdId(vo.getFdId()); main.setFdId(vo.getFdId());
main.setFdGrantStatus("拒绝授权"); main.setFdGrantStatus("拒绝授权");
main.setFdErrorMsg(responseV1.getErrordesc());
ekpBankPayTaskService.updateById(main); ekpBankPayTaskService.updateById(main);
// 更新明细状态为 发放失败,原因为拒绝授权 // 更新明细状态为 发放失败,原因为拒绝授权
//ekpBankGrantDetailService.updateStatusByGrantFail(vo.getFdId()) //ekpBankGrantDetailService.updateStatusByGrantFail(vo.getFdId())
......
...@@ -53,6 +53,7 @@ ...@@ -53,6 +53,7 @@
<result property="fdWxNo" column="fd_wx_no"/> <result property="fdWxNo" column="fd_wx_no"/>
<result property="fdMdCode" column="fd_md_dcode"/> <result property="fdMdCode" column="fd_md_dcode"/>
<result property="fdErrorMsg" column="fd_error_msg"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
a.fd_id, a.fd_id,
...@@ -82,7 +83,8 @@ ...@@ -82,7 +83,8 @@
a.fd_fail_num, a.fd_fail_num,
a.fd_grant_num, a.fd_grant_num,
a.fd_wx_no, a.fd_wx_no,
a.fd_md_dcode a.fd_md_dcode,
a.fd_error_msg
</sql> </sql>
<!-- 获取发放中的主表,查询结果 --> <!-- 获取发放中的主表,查询结果 -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment