WMS_PlatformInventory.cs 1.4 KB

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