using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// InventoryItem Data Structure.
///
[Serializable]
public class InventoryItem : AopObject
{
///
/// 可用库存
///
[XmlElement("available_qty")]
public long AvailableQty { get; set; }
///
/// 扩展库存
///
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
///
/// 在库库存
///
[XmlElement("on_hand_qty")]
public long OnHandQty { get; set; }
///
/// sku号
///
[XmlElement("sku_no")]
public string SkuNo { get; set; }
///
/// 总库存
///
[XmlElement("total_qty")]
public long TotalQty { get; set; }
///
/// 仓库编码
///
[XmlElement("warehouse_code")]
public string WarehouseCode { get; set; }
}
}