CmmWeightMatEntityFull.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.LgResMgt.Mcms.entity
  8. {
  9. public class CmmWeightMatEntityFull : CmmWeightMatEntity
  10. {
  11. [Description("待入库支")]
  12. [Nullable(true)]
  13. [DataLength(22)]
  14. public string UnInstockNum { get; set; }
  15. [Description("待入库吨")]
  16. [Nullable(true)]
  17. [DataLength(22)]
  18. public string UnInstockWt { get; set; }
  19. [Description("清单未入库支")]
  20. [Nullable(true)]
  21. [DataLength(22)]
  22. public decimal? TotalNum { get; set; }
  23. [Description("清单未入库吨")]
  24. [Nullable(true)]
  25. [DataLength(22)]
  26. public decimal? TotalWt { get; set; }
  27. [Description("清单未入库支")]
  28. [Nullable(true)]
  29. [DataLength(22)]
  30. public decimal? RemainNum { get; set; }
  31. [Description("清单未入库吨")]
  32. [Nullable(true)]
  33. [DataLength(22)]
  34. public decimal? RemainWt { get; set; }
  35. [Description("来料清单米单重")]
  36. [Nullable(true)]
  37. [DataLength(22)]
  38. public decimal? PerWt { get; set; }
  39. [Description("入库重量类型")]
  40. [Nullable(true)]
  41. [DataLength(40)]
  42. public string InstoreType { get; set; }
  43. [Description("预报备注")]
  44. [Nullable(true)]
  45. [DataLength(40)]
  46. public string Memo1 { get; set; }
  47. public decimal? singleWt { get; set; }
  48. public bool Chk { get; set; }
  49. public string LocationNo { get; set; }
  50. public string LocationName { get; set; }
  51. public string LaryNo { get; set; }
  52. public string TypeFlag { get; set; }
  53. public string OrderFull { get { return OrderNo + "/" + OrderSeq.PadLeft(3, '0'); } }
  54. }
  55. }