NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiTradeOrderPrecreateMo...

37 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiTradeOrderPrecreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiTradeOrderPrecreateModel : AopObject
{
/// <summary>
/// 业务类型当前支持POST_ORDER_PAY 点餐后付订单支付码生成
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 外部订单号,即请求方订单的唯一标识。 当biz_type传入POST_ORDER_PAY时该字段为必选
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 请求id唯一标识一次请求根据该字段请求幂等
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
/// <summary>
/// 口碑侧的门店id。 当biz_type传入POST_ORDER_PAY时该字段为必选
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}