using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OldComplextMockModel Data Structure.
///
[Serializable]
public class OldComplextMockModel : AopObject
{
///
/// biz_num
///
[XmlElement("biz_num")]
public long BizNum { get; set; }
///
/// biz_type
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 简单model
///
[XmlElement("simple_mock_model")]
public SimpleMockModel SimpleMockModel { get; set; }
}
}