足力健后端,使用.netcore版本,合并1个项目使用

GetStock.cs 603B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. namespace System.Model
  4. {
  5. /// <summary>
  6. /// 订单表
  7. /// </summary>
  8. [Serializable]
  9. public partial class GetStock
  10. {
  11. public GetStock()
  12. { }
  13. public bool success { get; set; }
  14. public List<EBossStock> stocks { get; set; }
  15. }
  16. /// <summary>
  17. /// 亿博士库存返回对象
  18. /// </summary>
  19. [Serializable]
  20. public class EBossStock
  21. {
  22. public EBossStock()
  23. { }
  24. public string store { get; set; }
  25. public string sku { get; set; }
  26. public int qty { get; set; }
  27. public int qtyout { get; set; }
  28. public int qtyin { get; set; }
  29. }
  30. }