5 changed files with 133 additions and 12 deletions
@ -0,0 +1,21 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace SDKAdapter.PurchasePlatform.Models |
|||
{ |
|||
public class PP_CreateOrderRequest : PP_PreviewOrderRequest |
|||
{ |
|||
/// <summary>
|
|||
/// 下单备注
|
|||
/// </summary>
|
|||
public string Remark { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 扩展数据
|
|||
/// </summary>
|
|||
public string Extensions { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,20 @@ |
|||
namespace SDKAdapter.PurchasePlatform.Models |
|||
{ |
|||
public class PP_CreateOrderResponse : PP_PreviewOrderResponse |
|||
{ |
|||
/// <summary>
|
|||
/// 订单Id
|
|||
/// </summary>
|
|||
public string OrderId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 是否支付
|
|||
/// </summary>
|
|||
public bool IsPay { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 下单失败的商品信息
|
|||
/// </summary>
|
|||
public IList<string> FailProductMessageList { get; set; } |
|||
} |
|||
} |
@ -1,12 +0,0 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace SDKAdapter.PurchasePlatform |
|||
{ |
|||
internal class PurchasePlatformSDK |
|||
{ |
|||
} |
|||
} |
Loading…
Reference in new issue