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