NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditSupplychainArSi...

55 lines
1.3 KiB
C#
Raw 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>
/// MybankCreditSupplychainArSignModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditSupplychainArSignModel : AopObject
{
/// <summary>
/// 协议产品码
/// </summary>
[XmlElement("ar_pd_code")]
public string ArPdCode { get; set; }
/// <summary>
/// 请求幂等控制ID
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
/// <summary>
/// 店铺ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 店铺名称
/// </summary>
[XmlElement("shop_name")]
public string ShopName { get; set; }
/// <summary>
/// 站点目前只支持AL
/// </summary>
[XmlElement("site")]
public string Site { get; set; }
/// <summary>
/// 站点ID
/// </summary>
[XmlElement("site_user_id")]
public string SiteUserId { get; set; }
/// <summary>
/// 场景来源
/// </summary>
[XmlElement("trade_source")]
public string TradeSource { get; set; }
}
}