ic_item_stock.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using Business.Model;
  2. using Microsoft.EntityFrameworkCore;
  3. using System.ComponentModel;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace Bussiness.Model.MES.IC
  6. {
  7. /// <summary>
  8. /// 物料库存表
  9. /// </summary>
  10. public class ic_item_stock : BaseEntity
  11. {
  12. /// <summary>
  13. /// 物料id
  14. /// </summary>
  15. [Required]
  16. [Description("物料id")]
  17. public long icitem_id { get; set; }
  18. /// <summary>
  19. /// 物料名称
  20. /// </summary>
  21. [StringLength(80)]
  22. [Description("物料名称")]
  23. public string? icitem_name { get; set; }
  24. /// <summary>
  25. /// 物料库存量
  26. /// </summary>
  27. [Precision(20, 8)]
  28. [Description("物料库存量")]
  29. public decimal? sqty { get; set; }
  30. /// <summary>
  31. /// 调拨在途数量
  32. /// </summary>
  33. [Precision(20, 8)]
  34. [Description("调拨在途数量")]
  35. public decimal? quantity_in_transit { get; set; }
  36. /// <summary>
  37. /// 工厂编码
  38. /// </summary>
  39. [StringLength(80)]
  40. [Description("工厂编码")]
  41. public string? factory_fode { get; set; }
  42. }
  43. }