using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayPlatformUseridGetModel Data Structure. /// [Serializable] public class AlipayPlatformUseridGetModel : AopObject { /// /// openId的列表 /// [XmlArray("open_ids")] [XmlArrayItem("string")] public List OpenIds { get; set; } } }