using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOpenAppReproCesCreateModel Data Structure. /// [Serializable] public class AlipayOpenAppReproCesCreateModel : AopObject { /// /// 测试 /// [XmlArray("comp")] [XmlArrayItem("gavintest_new_levea_one")] public List Comp { get; set; } /// /// 测试 /// [XmlElement("nam")] public Gavinmed Nam { get; set; } /// /// 21 /// [XmlArray("str")] [XmlArrayItem("string")] public List Str { get; set; } } }