NewGaoKaoApi/PaymentSDK/AliPay/Domain/MerchantModel.cs

43 lines
987 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// MerchantModel Data Structure.
/// </summary>
[Serializable]
public class MerchantModel : AopObject
{
/// <summary>
/// 商户别名
/// </summary>
[XmlElement("alias_name")]
public string AliasName { get; set; }
/// <summary>
/// 联系人姓名
/// </summary>
[XmlElement("contact_name")]
public string ContactName { get; set; }
/// <summary>
/// 联系人电话
/// </summary>
[XmlElement("contact_number")]
public string ContactNumber { get; set; }
/// <summary>
/// 商户名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 商户或者isv的pid
/// </summary>
[XmlElement("pid")]
public string Pid { get; set; }
}
}