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