| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- namespace System.Model
- {
- /// <summary>
- /// 订单表
- /// </summary>
- [Serializable]
- public partial class GetStock
- {
- public GetStock()
- { }
- public bool success { get; set; }
- public List<EBossStock> stocks { get; set; }
-
- }
- /// <summary>
- /// 亿博士库存返回对象
- /// </summary>
- [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; }
- }
- }
|