46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace PaymentSDK
|
|
{
|
|
public class WeixinModel
|
|
{
|
|
public string appId { get; set; }
|
|
public string nonceStr { get; set; }
|
|
public string package { get; set; }
|
|
public string signType { get; set; }
|
|
public string timeStamp { get; set; }
|
|
}
|
|
|
|
public class WeixinPayRespose
|
|
{
|
|
public string appid { get; set; }
|
|
public string mchi_id { get; set; }
|
|
public string device_info { get; set; }
|
|
public string nonce_str { get; set; }
|
|
public string sign { get; set; }
|
|
public string result_code { get; set; }
|
|
public string err_code { get; set; }
|
|
public string err_code_des { get; set; }
|
|
public string trade_type { get; set; }
|
|
public string prepay_id { get; set; }
|
|
public string code_url { get; set; }
|
|
public string timeStamp { get; set; }
|
|
public string orderid { get; set; }
|
|
}
|
|
|
|
|
|
public class GetPhoneInfo
|
|
{
|
|
public string encryptedData { get; set; }
|
|
|
|
public string iv { get; set; }
|
|
|
|
public string openid { get; set; }
|
|
|
|
public string session_key { get; set; }
|
|
}
|
|
|
|
}
|