using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// Gavinmed Data Structure. /// [Serializable] public class Gavinmed : AopObject { /// /// 复杂类型嵌入 /// [XmlArray("meds")] [XmlArrayItem("gavintest_new_levea_one")] public List Meds { get; set; } /// /// 退换货 /// [XmlElement("str")] public string Str { get; set; } } }