NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiQualityTestShieldResu...

57 lines
1.7 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiQualityTestShieldResultSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiQualityTestShieldResultSyncModel : AopObject
{
/// <summary>
/// 口碑加购单号
/// </summary>
[XmlElement("batch_no")]
public string BatchNo { get; set; }
/// <summary>
/// 节点执行结果
/// </summary>
[XmlArray("check_result_list")]
[XmlArrayItem("check_result_list")]
public List<CheckResultList> CheckResultList { get; set; }
/// <summary>
/// 口碑订单号
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 外部订单号在ISV点餐对接中特指POS侧订单ID在接单回执中由ISV给到口碑 特别说明: 在首次点菜场景中,推单信息中此参数为空;在加菜场景中,此参数不为空;
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 商户ID
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 支付类型。 ADVANCE_PAYMENT先付 AFTER_PAYMENT后付
/// </summary>
[XmlElement("pay_style")]
public string PayStyle { get; set; }
/// <summary>
/// 口碑门店id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}