BillPackInfo.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.sx
  6. {
  7. [Tenant("sx")]
  8. [SugarTable("Bill_PackInfo")]
  9. public class BillPackInfo:BaseModel
  10. {
  11. /// <summary>
  12. /// 包装代码
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  15. public string PackCode { get; set; }
  16. /// <summary>
  17. /// 包装描述
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  20. public string PackDesc { get; set; }
  21. /// <summary>
  22. /// 包装方式代码
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  25. public string PackMethodCode { get; set; }
  26. /// <summary>
  27. /// 包装方式
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  30. public string PackMethod { get; set; }
  31. /// <summary>
  32. /// 工字轮型号
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  35. public string Spool { get; set; }
  36. /// <summary>
  37. /// 工字轮标准数量
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  40. public string SpoolNum { get; set; }
  41. /// <summary>
  42. /// 空工字轮数量
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  45. public string EmptySpoolNum { get; set; }
  46. /// <summary>
  47. /// 每箱层数量
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  50. public string LayersNum { get; set; }
  51. /// <summary>
  52. /// 每层工字轮数量
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  55. public string LayersSpoolNum { get; set; }
  56. /// <summary>
  57. /// 物料编码
  58. /// </summary>
  59. [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)]
  60. public string MatCode { get; set; }
  61. /// <summary>
  62. /// 物料描述
  63. /// </summary>
  64. [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)]
  65. public string MatName { get; set; }
  66. /// <summary>
  67. /// 数量
  68. /// </summary>
  69. [SugarColumn(ColumnDataType = "int", IsNullable = true)]
  70. public int Count { get; set; }
  71. /// <summary>
  72. /// 单位
  73. /// </summary>
  74. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  75. public string UnitName { get; set; }
  76. /// <summary>
  77. /// 物料单重
  78. /// </summary>
  79. [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)]
  80. public decimal Weight { get; set; }
  81. }
  82. }