初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using Hncore.Pass.PaymentCenter.WxPay.WechatJsPay;
using Newtonsoft.Json;
using System.Xml.Serialization;
namespace Hncore.Pass.PaymentCenter.Pay.WxPay
{
public class WxScanPayCreateOrderResponse : WxJsPayDataBase
{
[XmlElement("appId")]
public string appId { get; set; }
[XmlElement("timeStamp")]
public string timeStamp { get; set; }
public string nonceStr { get; set; }
public string prepay_id { get; set; }
public string signType { get; set; }
public string paySign { get; set; }
[JsonIgnore]
public string package => $"prepay_id={this.prepay_id}";
}
}