u_mattress_mx_mtrl.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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[] { "mattressmxid" })]
  9. public sealed class u_mattress_mx_mtrl
  10. {
  11. public int? mattressmxid { get; set; }
  12. public int? mattressid { get; set; }
  13. public int? formulaid { get; set; }
  14. public string formula { get; set; }
  15. public int? mtrlid { get; set; }
  16. public decimal? price { get; set; }
  17. public decimal? gram_weight { get; set; }
  18. public decimal? cloth_width { get; set; }
  19. public int? if_inputqty { get; set; }
  20. public decimal? qty { get; set; }
  21. public decimal? costamt { get; set; }
  22. public int? if_15strip { get; set; }
  23. public int? if_success { get; set; }
  24. public decimal? shrinkage { get; set; }
  25. public string replace_formula { get; set; }
  26. public string priceunit { get; set; }
  27. public byte? if_areaprice { get; set; }
  28. public decimal? thickness { get; set; }
  29. public string chastr { get; set; }
  30. public string dv_dscrp { get; set; }
  31. public decimal? xu { get; set; }
  32. public decimal? useqty { get; set; }
  33. public string useformula { get; set; }
  34. public string replace_useformula { get; set; }
  35. public string gydscrp { get; set; }
  36. public string cw_erpmtrlcode { get; set; }
  37. public int? erp_mtrlid { get; set; }
  38. #region 其他
  39. /// <summary>
  40. /// 区分床垫Tab 0-面料 1-垫层 2-辅料 3-包装 4-杂料 99-床网 101-102-内布套 103-顶布裥棉
  41. /// </summary>
  42. public int? formulatype { get; set; }
  43. public int? formulakind { get; set; }
  44. public string sortcode { get; set; }
  45. public string mtrlname { get; set; }
  46. #endregion
  47. }
  48. }