NewGaoKaoApi/PaymentSDK/AliPay/Domain/OuterShopDO.cs

31 lines
751 B
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>
/// OuterShopDO Data Structure.
/// </summary>
[Serializable]
public class OuterShopDO : AopObject
{
/// <summary>
/// 合作商户ID
/// </summary>
[XmlElement("outer_id")]
public string OuterId { get; set; }
/// <summary>
/// 支付宝店铺ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 合作商户类型 mike、_2dFire iSV自己定义自己的类型推荐使用自己的域名
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}