PlatformInventory.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using Business.Domain;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.StructuredDB.WMS
  9. {
  10. /// <summary>
  11. /// 平台规格库存对照
  12. /// </summary>
  13. [Comment("平台规格库存对照")]
  14. public class PlatformInventory : BaseEntity
  15. {
  16. /// <summary>
  17. /// 仓库
  18. /// </summary>
  19. [Comment("仓库")]
  20. public string? Location { get; set; }
  21. /// <summary>
  22. /// 规格或货品编码
  23. /// </summary>
  24. [Comment("规格或货品编码")]
  25. public string? SpecificationModel { get; set; }
  26. /// <summary>
  27. /// 批号
  28. /// </summary>
  29. [Comment("批号")]
  30. public string? BatchNumber { get; set; }
  31. /// <summary>
  32. /// 数量
  33. /// </summary>
  34. [Comment("数量")]
  35. public decimal? InventoryQuantity { get; set; }
  36. /// <summary>
  37. /// 有效期
  38. /// </summary>
  39. [Comment("有效期")]
  40. public decimal? PeriodOfValidity { get; set; }
  41. /// <summary>
  42. /// 编码
  43. /// </summary>
  44. [Comment("编码")]
  45. public string? Code { get; set; }
  46. }
  47. }