ComplextMockModel.cs 664 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Domain
  4. {
  5. /// <summary>
  6. /// ComplextMockModel Data Structure.
  7. /// </summary>
  8. [Serializable]
  9. public class ComplextMockModel : AopObject
  10. {
  11. /// <summary>
  12. /// biz_model
  13. /// </summary>
  14. [XmlElement("biz_model")]
  15. public SimpleMockModel BizModel { get; set; }
  16. /// <summary>
  17. /// 11
  18. /// </summary>
  19. [XmlElement("biz_num")]
  20. public long BizNum { get; set; }
  21. /// <summary>
  22. /// 208xxx
  23. /// </summary>
  24. [XmlElement("biz_type")]
  25. public string BizType { get; set; }
  26. }
  27. }