NewGaoKaoApi/PaymentSDK/AliPay/Domain/BenefitQueryInfo.cs

61 lines
1.5 KiB
C#
Raw 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>
/// BenefitQueryInfo Data Structure.
/// </summary>
[Serializable]
public class BenefitQueryInfo : AopObject
{
/// <summary>
/// 权益描述
/// </summary>
[XmlElement("benefit_desc")]
public string BenefitDesc { get; set; }
/// <summary>
/// 权益名称
/// </summary>
[XmlElement("benefit_name")]
public string BenefitName { get; set; }
/// <summary>
/// 权益面额
/// </summary>
[XmlElement("beneft_price")]
public string BeneftPrice { get; set; }
/// <summary>
/// 权益结束时间
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 其他信息为key-value格式格式为json
/// </summary>
[XmlElement("other_infos")]
public string OtherInfos { get; set; }
/// <summary>
/// 每人限领数量
/// </summary>
[XmlElement("person_limit")]
public string PersonLimit { get; set; }
/// <summary>
/// 权益开始时间
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 总数量
/// </summary>
[XmlElement("total_quantity")]
public string TotalQuantity { get; set; }
}
}