WMS_PlatformInventory.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. }
  48. }