Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ComplextMockModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
576 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ComplextMockModel Data Structure.
/// </summary>
[Serializable]
public class ComplextMockModel : AopObject
{
/// <summary>
/// biz_model
/// </summary>
[JsonProperty("biz_model")]
public SimpleMockModel BizModel { get; set; }
/// <summary>
/// 11
/// </summary>
[JsonProperty("biz_num")]
public long BizNum { get; set; }
/// <summary>
/// 208xxx
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
}
}