NewGaoKaoApi/PaymentSDK/AliPay/Domain/BenefitInfo.cs

61 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// BenefitInfo Data Structure.
/// </summary>
[Serializable]
public class BenefitInfo : AopObject
{
/// <summary>
/// 权益信息id
/// </summary>
[XmlElement("benefit_info_id")]
public string BenefitInfoId { get; set; }
/// <summary>
/// 权益名称
/// </summary>
[XmlElement("benefit_name")]
public string BenefitName { get; set; }
/// <summary>
/// 权益中文名称
/// </summary>
[XmlElement("benefit_name_cn")]
public string BenefitNameCn { get; set; }
/// <summary>
/// 权益类型(会员等级: MemberGrade)
/// </summary>
[XmlElement("benefit_type")]
public string BenefitType { get; set; }
/// <summary>
/// 权益发放时间
/// </summary>
[XmlElement("dispatch_dt")]
public string DispatchDt { get; set; }
/// <summary>
/// 权益失效时间
/// </summary>
[XmlElement("end_dt")]
public string EndDt { get; set; }
/// <summary>
/// 权益生效时间
/// </summary>
[XmlElement("start_dt")]
public string StartDt { get; set; }
/// <summary>
/// 权益当前状态 * 待生效WAIT * 生效VALID * 失效INVALID
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}