【修复】修复微信商家付款到零钱数据明细中out_detail_no长度因小于5位而出错的问题。

This commit is contained in:
jianweie code
2023-02-13 04:14:40 +08:00
parent 2aa7ea7e8b
commit 0d54b26379

View File

@@ -412,7 +412,7 @@ namespace CoreCms.Net.Services
{
new()
{
OutDetailNo = "ut" + info.id,
OutDetailNo = "ut"+ info.createTime.ToString("yyyyMMddHH") + info.id,
TransferAmount = amount,
TransferRemark = "用户提现处理",
OpenId = weChatUserInfo.openid,