49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// TradePrecreateConfirmTradeMerchantInfo Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class TradePrecreateConfirmTradeMerchantInfo : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 商户所在的城市编码
|
||
/// </summary>
|
||
[XmlElement("city_code")]
|
||
public string CityCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户所在城市简体中文名
|
||
/// </summary>
|
||
[XmlElement("city_name_sc")]
|
||
public string CityNameSc { get; set; }
|
||
|
||
/// <summary>
|
||
/// 直连商户ID
|
||
/// </summary>
|
||
[XmlElement("id")]
|
||
public string Id { get; set; }
|
||
|
||
/// <summary>
|
||
/// 直连商户MCC
|
||
/// </summary>
|
||
[XmlElement("mcc")]
|
||
public string Mcc { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户类型 企业取值:ENTERPRISE 个人取值: PERSONAL 个体工商户取值: PERSONAL_BUSINESS
|
||
/// </summary>
|
||
[XmlElement("merchant_type")]
|
||
public string MerchantType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 直连商户名称
|
||
/// </summary>
|
||
[XmlElement("name")]
|
||
public string Name { get; set; }
|
||
}
|
||
}
|