using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ComplextMockModel Data Structure. /// [Serializable] public class ComplextMockModel : AopObject { /// /// biz_model /// [XmlElement("biz_model")] public SimpleMockModel BizModel { get; set; } /// /// 11 /// [XmlElement("biz_num")] public long BizNum { get; set; } /// /// 208xxx /// [XmlElement("biz_type")] public string BizType { get; set; } } }