Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ComplextMockModel.cs

30 lines
576 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
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; }
}
}