using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InsMerchant Data Structure. /// [Serializable] public class InsMerchant : AopObject { /// /// 机构全称 /// [XmlElement("name")] public string Name { get; set; } /// /// 服务电话 /// [XmlElement("service_phone")] public string ServicePhone { get; set; } /// /// 机构简称 /// [XmlElement("short_name")] public string ShortName { get; set; } } }