Skip to content

Commit

Permalink
修复非当天银联订单号无法查询问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Varorbc committed Dec 9, 2020
1 parent 9edd6c5 commit 5ae4700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PaySharp.Unionpay/Domain/BaseModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class BaseModel
/// <summary>
/// 订单发送时间
/// </summary>
public string TxnTime { get; } = DateTime.Now.ToString("yyyyMMddHHmmss");
public string TxnTime { get; set; } = DateTime.Now.ToString("yyyyMMddHHmmss");

/// <summary>
/// 交易类型
Expand Down

0 comments on commit 5ae4700

Please sign in to comment.