NewGaoKaoApi/PaymentSDK/AliPay/Domain/EbppOrderItemToCreate.cs

37 lines
1.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>
/// EbppOrderItemToCreate Data Structure.
/// </summary>
[Serializable]
public class EbppOrderItemToCreate : AopObject
{
/// <summary>
/// 业务金额
/// </summary>
[XmlElement("biz_amount")]
public string BizAmount { get; set; }
/// <summary>
/// 业务产品id由支付宝分配。
/// </summary>
[XmlElement("biz_prod_id")]
public string BizProdId { get; set; }
/// <summary>
/// 扩展字段 (缴税业务: taxpayerName - 纳税人名称, taxPayerCode - 纳税人识别号, taxOrgCode - 所属机关代码, outerLevyNo - 外部申报号/电子税票号码,
/// </summary>
[XmlElement("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 机构端对该子项所代表的这笔业务的唯一标识。
/// </summary>
[XmlElement("inst_item_id")]
public string InstItemId { get; set; }
}
}