using System; using System.Collections.Generic; namespace System.Model { /// /// 订单表 /// [Serializable] public partial class GetStock { public GetStock() { } public bool success { get; set; } public List stocks { get; set; } } /// /// 亿博士库存返回对象 /// [Serializable] public class EBossStock { public EBossStock() { } public string store { get; set; } public string sku { get; set; } public int qty { get; set; } public int qtyout { get; set; } public int qtyin { get; set; } } }