using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AgentOrganization Data Structure. /// [Serializable] public class AgentOrganization : AopObject { /// /// 经代下面二级商户id /// [XmlElement("agent_merchant_id")] public string AgentMerchantId { get; set; } /// /// 代理机构(ISV)蚂蚁编码,组织入驻蚂蚁生成的cid /// [XmlElement("cid")] public string Cid { get; set; } /// /// 代理机构(ISV)蚂蚁全称,组织入驻蚂蚂蚁的全称 /// [XmlElement("cid_name")] public string CidName { get; set; } } }