MatInfo.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Infragistics.Win.UltraWinGrid;
  7. namespace Core.StlMes.Client.LgResMgt.库存位置
  8. {
  9. public class MatInfo
  10. {
  11. [Description("选择")]
  12. public bool Chk { get; set; }
  13. [Description("料位")]
  14. public string LocationNo { get; set; }
  15. [Description("层号")]
  16. public string LaryNo { get; set; }
  17. [Description("类型")]
  18. public string MatType { get; set; }
  19. [Description("目标层号")]
  20. public string LaryNoTo { get; set; }
  21. [Description("料位名称")]
  22. public string LocationName { get; set; }
  23. [Description("熔炉炉号")]
  24. public string StoveNo { get; set; }
  25. [Description("判定炉号")]
  26. public string JudgeStoveNo { get; set; }
  27. [Description("批号")]
  28. public string BatchNo { get; set; }
  29. [Description("钢种")]
  30. public string Gradename { get; set; }
  31. [Description("钢级")]
  32. public string Steelname { get; set; }
  33. [Description("直径/外径")]
  34. public string ActDimater { get; set; }
  35. [Description("壁厚")]
  36. public string ActHeight { get; set; }
  37. [Description("倍尺数")]
  38. public string FixNum { get; set; }
  39. [Description("长度")]
  40. public string ActLen { get; set; }
  41. [Description("长度范围")]
  42. public string LengthRange { get; set; }
  43. [Description("支数")]
  44. public decimal? ActCount { get; set; }
  45. [Description("重量")]
  46. public decimal? ActWeight { get; set; }
  47. [Description("判定结果")]
  48. public string QcmStaus { get; set; }
  49. [Description("材料类别")]
  50. public string ProductFlag { get; set; }
  51. [Description("合同号")]
  52. public string OrderNo { get; set; }
  53. [Description("客户")]
  54. public string CustomerNm { get; set; }
  55. [Description("生产批号")]
  56. public string LotNo { get; set; }
  57. [Description("备注")]
  58. public string Memo { get; set; }
  59. [Description("备注1")]
  60. public string Memo1 { get; set; }
  61. [Description("倒垛班次")]
  62. public string Bc { get; set; }
  63. [Description("倒垛班组")]
  64. public string Bz { get; set; }
  65. [Description("倒垛人")]
  66. public string UserName { get; set; }
  67. [Description("部门id")]
  68. public string Deptid { get; set; }
  69. [Description("部门")]
  70. public string DeptName { get; set; }
  71. [Description("来料厂商")]
  72. public string SoureName { get; set; }
  73. public UltraGridCell UltraGridCell { get; set; }
  74. [Description("材料状态")]
  75. public string MatState { get; set; }
  76. [Description("品名描述")]
  77. public string Producname { get; set; }
  78. /// <summary>
  79. ///新增下面4个 tzh 2024.8.15
  80. /// </summary>
  81. [Description("判定字头")]
  82. public string PdZt { get; set; }
  83. [Description("是否送判")]
  84. public string IfSp { get; set; }
  85. [Description("入库时间")]
  86. public string InstockTime { get; set; }
  87. [Description("去向")]
  88. public string MatGowhereName { get; set; }
  89. }
  90. }