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

48 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserCharityForestSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserCharityForestSendModel : AopObject
{
/// <summary>
/// 唯一单据号,用于发能量幂等控制
/// </summary>
[JsonProperty("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 业务发生时间
/// </summary>
[JsonProperty("biz_time")]
public string BizTime { get; set; }
/// <summary>
/// 能量值最小1g最大100kg100,000不能有小数
/// </summary>
[JsonProperty("energy")]
public long Energy { get; set; }
/// <summary>
/// 能量气泡类型
/// </summary>
[JsonProperty("energy_type")]
public string EnergyType { get; set; }
/// <summary>
/// 业务来源
/// </summary>
[JsonProperty("source")]
public string Source { get; set; }
/// <summary>
/// 用户的支付宝账户ID
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}