using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiSalesKbassetStuffInventoryrealtimeSyncModel Data Structure. /// [Serializable] public class KoubeiSalesKbassetStuffInventoryrealtimeSyncModel : AopObject { /// /// 扩展字段 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 库存时间 /// [XmlElement("inventory_time")] public string InventoryTime { get; set; } /// /// 库存明细 /// [XmlArray("items")] [XmlArrayItem("inventory_item")] public List Items { get; set; } } }