scm_shdzbDto.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.StructuredDB.MES
  7. {
  8. /// <summary>
  9. /// 收货单子表状态
  10. /// </summary>
  11. [Comment("收货单子表状态")]
  12. [Keyless]
  13. public class scm_shdzbDto
  14. {
  15. /// <summary>
  16. /// 主键
  17. /// </summary>
  18. [Comment("主键")]
  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. /// <summary>
  51. /// 收货状态
  52. /// </summary>
  53. [Comment("收货状态")]
  54. public string shzt { get; set; }
  55. /// <summary>
  56. /// 供应商编号
  57. /// </summary>
  58. [Comment("供应商编号")]
  59. public string sh_purchase_num { get; set; }
  60. /// <summary>
  61. /// 供应商id
  62. /// </summary>
  63. [Comment("供应商id")]
  64. public long sh_purchase_id { get; set; }
  65. /// <summary>
  66. /// 计划发货日期
  67. /// </summary>
  68. [Comment("计划发货日期")]
  69. public DateTime? jhshrq { get; set; }
  70. /// <summary>
  71. /// 预计到货日期
  72. /// </summary>
  73. [Comment("预计到货日期")]
  74. public DateTime? yjdhrq { get; set; }
  75. /// <summary>
  76. /// 采购明细id
  77. /// </summary>
  78. [Comment("采购明细id")]
  79. public long polist_id { get; set; }
  80. }
  81. }