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

60 lines
1.3 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>
/// BenefitInfo Data Structure.
/// </summary>
[Serializable]
public class BenefitInfo : AopObject
{
/// <summary>
/// 权益信息id
/// </summary>
[JsonProperty("benefit_info_id")]
public string BenefitInfoId { get; set; }
/// <summary>
/// 权益名称
/// </summary>
[JsonProperty("benefit_name")]
public string BenefitName { get; set; }
/// <summary>
/// 权益中文名称
/// </summary>
[JsonProperty("benefit_name_cn")]
public string BenefitNameCn { get; set; }
/// <summary>
/// 权益类型(会员等级: MemberGrade)
/// </summary>
[JsonProperty("benefit_type")]
public string BenefitType { get; set; }
/// <summary>
/// 权益发放时间
/// </summary>
[JsonProperty("dispatch_dt")]
public string DispatchDt { get; set; }
/// <summary>
/// 权益失效时间
/// </summary>
[JsonProperty("end_dt")]
public string EndDt { get; set; }
/// <summary>
/// 权益生效时间
/// </summary>
[JsonProperty("start_dt")]
public string StartDt { get; set; }
/// <summary>
/// 权益当前状态 * 待生效WAIT * 生效VALID * 失效INVALID
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}