u_mtrldef.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace JLHHJSvr.Com.Model
  7. {
  8. [PK(new[] { "mtrlid" })]
  9. public sealed class u_mtrldef
  10. {
  11. public int? mtrltypeid { get; set; }
  12. public int? dftwrkgrpid { get; set; }
  13. public int? mtrlid { get; set; }
  14. public string mtrlcode { get; set; }
  15. public string mtrlname { get; set; }
  16. public int? mtrlorigin { get; set; }
  17. public string mtrltype { get; set; }
  18. public string handtype { get; set; }
  19. public string unit { get; set; }
  20. public string mtrlmode { get; set; }
  21. public string mtrlsectype { get; set; }
  22. public string zxmtrlmode { get; set; }
  23. public string usermtrlmode { get; set; }
  24. public string mtrlengname { get; set; }
  25. public string material { get; set; }
  26. public string barcode { get; set; }
  27. public string dscrp { get; set; }
  28. public int? issuliao { get; set; }
  29. public byte? isuse { get; set; }
  30. //public byte? iflimitprice { get; set; }
  31. public decimal? net_weight { get; set; }
  32. public decimal? gross_weight { get; set; }
  33. public decimal? cubage { get; set; }
  34. public string prdpackcode { get; set; }
  35. public DateTime? opdate { get; set; }
  36. public string opemp { get; set; }
  37. public int? buyunit { get; set; }
  38. public int? buydec { get; set; }
  39. public string unit_buy { get; set; }
  40. public string unit_scll { get; set; }
  41. public string unit_sale { get; set; }
  42. public decimal rate_buy { get; set; }
  43. public decimal rate_scll { get; set; }
  44. public decimal rate_sale { get; set; }
  45. public decimal saleunit { get; set; }
  46. public int? price_ifpz_buy { get; set; }
  47. public int? iflimitprice { get; set; }
  48. public int? flag { get; set; }
  49. public int? statustype { get; set; }
  50. public int? woodcodetype { get; set; }
  51. public int? pcodetype { get; set; }
  52. public int? status_check { get; set; }
  53. public int? woodcode_check { get; set; }
  54. public int? pcode_check { get; set; }
  55. public byte? statusflag { get; set; }
  56. public byte? woodcodeflag { get; set; }
  57. public byte? pcodeflag { get; set; }
  58. public byte? Mtrlorigin { get; set; }
  59. public decimal? LMsaleprice { get; set; }
  60. public decimal? gbrate { get; set; }
  61. public int? ifcheckaddqty { get; set; }
  62. public string strcheckaddqty { get; set; }
  63. public string woodcode_config { get; set; }
  64. public string rowNum { get; set; }
  65. public string status_config { get; set; }
  66. public string woodcode_configName { get; set; }
  67. public string status_configName { get; set; }
  68. public decimal? quoteqty { get; set; }
  69. #region mtrlware
  70. public decimal? noallocqty { get; set; }
  71. #endregion
  72. /// <summary>
  73. /// 主图MD5
  74. /// </summary>
  75. public string picmd5 { get; set; }
  76. public string storagename { get; set; }
  77. /// <summary>
  78. /// 单价
  79. /// </summary>
  80. public decimal? price { get; set; }
  81. public decimal? taxrate { get; set; }
  82. public decimal? rebate { get; set; }
  83. /// <summary>
  84. /// 原价
  85. /// </summary>
  86. public decimal? price_ori { get; set; }
  87. /// <summary>
  88. /// 参考装柜量
  89. /// </summary>
  90. public decimal? ck_packqty { get; set; }
  91. /// <summary>
  92. /// 价格表币种
  93. /// </summary>
  94. public int moneyid { get; set; }
  95. public int fjcnt { get; set; }
  96. public decimal kcqty { get; set; }
  97. public decimal xqqty { get; set; }
  98. public decimal maxqty { get; set; }
  99. /// <summary>
  100. /// 配置1默认值
  101. /// </summary>
  102. public string dftStatus { get; set; }
  103. /// <summary>
  104. /// 配置2默认值
  105. /// </summary>
  106. public string dftWoodcode { get; set; }
  107. /// <summary>
  108. /// 配置3默认值
  109. /// </summary>
  110. public string dftPcode { get; set; }
  111. /// <summary>
  112. /// 分部id
  113. /// </summary>
  114. public int? scid { get; set; }
  115. public int? lspacklimit { get; set; }
  116. public decimal? planprice { get; set; }
  117. }
  118. }