NewGaoKaoApi/PaymentSDK/AliPay/Domain/GoodsReturnOrderItem.cs

43 lines
970 B
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>
/// GoodsReturnOrderItem Data Structure.
/// </summary>
[Serializable]
public class GoodsReturnOrderItem : AopObject
{
/// <summary>
/// 扩展字段
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 单价单位没有设置0
/// </summary>
[XmlElement("price")]
public string Price { get; set; }
/// <summary>
/// 数量
/// </summary>
[XmlElement("qty")]
public string Qty { get; set; }
/// <summary>
/// sku名称
/// </summary>
[XmlElement("sku_name")]
public string SkuName { get; set; }
/// <summary>
/// sku号
/// </summary>
[XmlElement("sku_no")]
public string SkuNo { get; set; }
}
}