NewGaoKaoApi/PaymentSDK/AliPay/Domain/GroupFundUserBill.cs

67 lines
2.1 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>
/// GroupFundUserBill Data Structure.
/// </summary>
[Serializable]
public class GroupFundUserBill : AopObject
{
/// <summary>
/// 实际待收待付金额,两位小数点的整数,单位元
/// </summary>
[XmlElement("actual_amount")]
public string ActualAmount { get; set; }
/// <summary>
/// 待收或待付金额,两位小数点的正数,单位元
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 团体资金批次号
/// </summary>
[XmlElement("batch_no")]
public string BatchNo { get; set; }
/// <summary>
/// 批次状态,包括: INIT:收款中, COLLECT_SUC: 全部收款完成, PAYMENT_SUC: 全部付款完成, CLOSE: 超时收款未完成已关闭REFUND付款部分未成功,部分退款
/// </summary>
[XmlElement("batch_status")]
public string BatchStatus { get; set; }
/// <summary>
/// 资金单据号,唯一标识一次资金流入/流出
/// </summary>
[XmlElement("bill_no")]
public string BillNo { get; set; }
/// <summary>
/// 单据类型, "R"为收款单,"P"为付款单
/// </summary>
[XmlElement("bill_type")]
public string BillType { get; set; }
/// <summary>
/// 单据状态,包括"INIT": 初始化(发起预结算尚未预付款)"PRE_PAY": 预付款阶段,"PAY_SUC":预付款成功,"CLOSE":已关闭,"REFUND":已退款
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 批次是否过期
/// </summary>
[XmlElement("timeout")]
public bool Timeout { get; set; }
/// <summary>
/// 单据所属的支付宝账户ID对于收款单表示待付款用户ID对于付款单标识待收款用户ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}