49 lines
1.5 KiB
C#
49 lines
1.5 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserPointAuthbaseDeductModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayUserPointAuthbaseDeductModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 蚂蚁会员平台上的权益所对应的编号
|
|
/// </summary>
|
|
[XmlElement("benefit_id")]
|
|
public string BenefitId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 格式为yyyy-MM-dd HH:mm:ss ,业务操作时间用于对账,不传则以调用请求的当前时间计算
|
|
/// </summary>
|
|
[XmlElement("biz_date")]
|
|
public string BizDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务大类,表明此次调用的来源,若无需要则不传。
|
|
/// </summary>
|
|
[XmlElement("biz_type")]
|
|
public string BizType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务流水号,会用于幂等性校验,所以请保证每次请求的业务流水号的唯一性
|
|
/// </summary>
|
|
[XmlElement("out_biz_no")]
|
|
public string OutBizNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务子类型,表明业务来源实际操作的业务分类,若无需要则不传
|
|
/// </summary>
|
|
[XmlElement("sub_biz_type")]
|
|
public string SubBizType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户的支付宝账户ID
|
|
/// </summary>
|
|
[XmlElement("user_id")]
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|