You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
872 B
31 lines
872 B
namespace SDKAdapter.OperationPlatform.Models
|
|
{
|
|
public class OP_OrderResponse
|
|
{
|
|
public string OrderId { get; set; }
|
|
|
|
public DateTime StartTime { get; set; }
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
public DateTime ModifyTime { get; set; }
|
|
|
|
public AdapterEnums.PlatformType OrderPlatform { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付类型
|
|
/// <para>京东【 货到付款 = 1,邮局汇款 = 2,自提 = 3,在线支付 = 4,公司转账 = 5,银行卡转账 = 6】</para>
|
|
/// <para>拳探【】</para>
|
|
/// </summary>
|
|
public int PayType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下单来源
|
|
/// <para>京东【】</para>
|
|
/// <para>拳探【0 = 拳探,1 = 步步为盈C端】</para>
|
|
/// </summary>
|
|
public int OrderSource { get; set; }
|
|
|
|
|
|
}
|
|
}
|
|
|