SAPInv.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 string LABST { get; set; }
  41. }
  42. }