scm_shdzb.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using Business.Core.Attributes;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. namespace Business.Domain
  7. {
  8. /// <summary>
  9. /// 收货单子表
  10. /// </summary>
  11. [Comment("收货单子表")]
  12. public class scm_shdzb
  13. {
  14. /// <summary>
  15. /// 主键
  16. /// </summary>
  17. [Comment("主键")]
  18. [Key]
  19. public long id { get; set; }
  20. /// <summary>
  21. /// 物料编码
  22. /// </summary>
  23. [Comment("物料编码")]
  24. public string sh_material_code { get; set; }
  25. /// <summary>
  26. /// 采购单号
  27. /// </summary>
  28. [Comment("采购单号")]
  29. public string po_bill { get; set; }
  30. /// <summary>
  31. /// 采购单行号
  32. /// </summary>
  33. [Comment("采购单行号")]
  34. public string po_billline { get; set; }
  35. /// <summary>
  36. /// 送货数量
  37. /// </summary>
  38. [Comment("送货数量")]
  39. public decimal sh_delivery_quantity { get; set; }
  40. /// <summary>
  41. /// 交货单号
  42. /// </summary>
  43. [Comment("交货单号")]
  44. public string jhdbh { get; set; }
  45. /// <summary>
  46. /// 交货单行号
  47. /// </summary>
  48. [Comment("交货单行号")]
  49. public string jhdhh { get; set; }
  50. }
  51. }