NewGaoKaoApi/PaymentSDK/AliPay/Domain/ItemSkuInfo.cs

69 lines
1.6 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// ItemSkuInfo Data Structure.
/// </summary>
[Serializable]
public class ItemSkuInfo : AopObject
{
/// <summary>
/// 成本价,单位分
/// </summary>
[XmlElement("cost_price")]
public long CostPrice { get; set; }
/// <summary>
/// SKU扩展信息
/// </summary>
[XmlArray("ext_info")]
[XmlArrayItem("item_ext_info")]
public List<ItemExtInfo> ExtInfo { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[XmlElement("gmt_modified")]
public string GmtModified { get; set; }
/// <summary>
/// 商品id
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 标价,单位分
/// </summary>
[XmlElement("original_price")]
public long OriginalPrice { get; set; }
/// <summary>
/// 售价,单位分
/// </summary>
[XmlElement("price")]
public long Price { get; set; }
/// <summary>
/// 商品sku id
/// </summary>
[XmlElement("sku_id")]
public string SkuId { get; set; }
/// <summary>
/// 商品SKU状态EFFECT、INVALID
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}