SAPInv.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.StructuredDB.WMS
  9. {
  10. /// <summary>
  11. /// SAP库存表
  12. /// </summary>
  13. public class SAPInv
  14. {
  15. /// <summary>
  16. /// 主键
  17. /// </summary>
  18. [Comment("主键")]
  19. [Key]
  20. public int RecID { get; set; }
  21. /// <summary>
  22. /// 域名
  23. /// </summary>
  24. [Comment("域名")]
  25. public string WERKS { get; set; }
  26. /// <summary>
  27. /// 物料编码
  28. /// </summary>
  29. [Comment("物料编码")]
  30. public string MATNR { get; set; }
  31. /// <summary>
  32. /// 库位
  33. /// </summary>
  34. [Comment("库位")]
  35. public string LGORT { get; set; }
  36. /// <summary>
  37. /// 非限制库存量
  38. /// </summary>
  39. [Comment("非限制库存量")]
  40. public decimal LABST { get; set; }
  41. /// <summary>
  42. /// 质检库存
  43. /// </summary>
  44. [Comment("质检库存")]
  45. public decimal INSME { get; set; }
  46. /// <summary>
  47. /// 冻结库存
  48. /// </summary>
  49. [Comment("冻结库存")]
  50. public decimal SPEME { get; set; }
  51. /// <summary>
  52. /// 库存标识 K/O
  53. /// </summary>
  54. [Comment("库存标识 K/O")]
  55. public string SOBKZ { get; set; }
  56. }
  57. }