diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java
index d4ced5b6f..7549e9b46 100644
--- a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java
+++ b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java
@@ -1435,6 +1435,7 @@ public class WxCouponOrderServiceImpl implements WxCouponOrderService {
couponOrder.setCouponOrderStatus(EnumCouponOrderStatus.POS_PRE_VERIFY.getCode()); //预核销
couponOrder.setBUserId(bUser.getId());
couponOrder.setVerifyType(EnumCouponVerifyType.VERIFY_B.getCode());
+ couponOrder.setVerifyRemark(EnumCouponVerifyType.VERIFY_B_10.getMessage());
couponOrder.setUpdateDate(new Date());
num = wxCouponOrderMapper.updateVerifyCouponOrderStatusForMicroPay(couponOrder);
} catch (Exception e) {
diff --git a/mallinkService/src/main/resources/mapper/WxCouponOrderMapper.xml b/mallinkService/src/main/resources/mapper/WxCouponOrderMapper.xml
index ea3f56f7d..a5cc0da3b 100644
--- a/mallinkService/src/main/resources/mapper/WxCouponOrderMapper.xml
+++ b/mallinkService/src/main/resources/mapper/WxCouponOrderMapper.xml
@@ -126,6 +126,9 @@
`b_user_id` = #{bUserId},
`update_date` = #{updateDate},
`verify_type` = #{verifyType}
+
+ ,`verify_remark` = #{verifyRemark}
+
where id=#{id} and `b_user_id` is null
and `tenant_id` = #{tenantId}
@@ -141,6 +144,9 @@
`b_user_id` = #{bUserId},
`update_date` = #{updateDate},
`verify_type` = #{verifyType}
+
+ ,`verify_remark` = #{verifyRemark}
+
where id=#{id}
and `tenant_id` = #{tenantId}
@@ -162,6 +168,9 @@
`b_user_id` = #{bUserId},
`update_date` = #{updateDate},
`verify_type` = #{verifyType}
+
+ ,`verify_remark` = #{verifyRemark}
+
where 1=1
and `tenant_id` = #{tenantId}