NewGaoKaoApi/PaymentSDK/AliPay/Domain/InvoiceOrderDTO.cs

85 lines
2.2 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>
/// InvoiceOrderDTO Data Structure.
/// </summary>
[Serializable]
public class InvoiceOrderDTO : AopObject
{
/// <summary>
/// 商品code
/// </summary>
[XmlElement("article_code")]
public string ArticleCode { get; set; }
/// <summary>
/// 商品原价单位元最多2位小数
/// </summary>
[XmlElement("article_fee")]
public string ArticleFee { get; set; }
/// <summary>
/// 商品ID
/// </summary>
[XmlElement("article_id")]
public string ArticleId { get; set; }
/// <summary>
/// 商品名称
/// </summary>
[XmlElement("article_name")]
public string ArticleName { get; set; }
/// <summary>
/// 订购时间格式yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("buy_date")]
public string BuyDate { get; set; }
/// <summary>
/// 拓展字段json格式
/// </summary>
[XmlElement("ext_json")]
public string ExtJson { get; set; }
/// <summary>
/// 实付总金额单位元最多2位小数
/// </summary>
[XmlElement("fact_total_fee")]
public string FactTotalFee { get; set; }
/// <summary>
/// 商品规格CODE
/// </summary>
[XmlElement("item_code")]
public string ItemCode { get; set; }
/// <summary>
/// 商品规格ID
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 商品规格名称
/// </summary>
[XmlElement("item_name")]
public string ItemName { get; set; }
/// <summary>
/// 服务市场订单号
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 订购类型,可选值: 新订购new 续费renew线下转线上online
/// </summary>
[XmlElement("order_type")]
public string OrderType { get; set; }
}
}