u_mattress_mx_mtrl.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. /// <summary>
  24. /// 是否异常,1:异常,0:正常
  25. /// </summary>
  26. public int? if_success { get; set; }
  27. public decimal? shrinkage { get; set; }
  28. public string replace_formula { get; set; }
  29. public string priceunit { get; set; }
  30. public byte? if_areaprice { get; set; }
  31. public decimal? thickness { get; set; }
  32. public string chastr { get; set; }
  33. public string dv_dscrp { get; set; }
  34. public decimal? xu { get; set; }
  35. public decimal? useqty { get; set; }
  36. public string useformula { get; set; }
  37. public string replace_useformula { get; set; }
  38. public string gydscrp { get; set; }
  39. public string cw_erpmtrlcode { get; set; }
  40. public int? erp_mtrlid { get; set; }
  41. #region 其他
  42. /// <summary>
  43. /// 区分床垫Tab 0-面料 1-垫层 2-辅料 3-包装 4-杂料 99-床网 101-102-内布套 103-顶布裥棉
  44. /// </summary>
  45. public int? formulatype { get; set; }
  46. public int? formulakind { get; set; }
  47. public string sortcode { get; set; }
  48. public string mtrlname { get; set; }
  49. public int? copty_mtrlid { get; set; }
  50. /// <summary>
  51. /// 计算错误信息
  52. /// </summary>
  53. public string message { get; set; }
  54. public string addmx { get; set; }
  55. public string delmx { get; set; }
  56. /// <summary>
  57. /// 按物料(无物料,单物料,多物料)
  58. /// </summary>
  59. public int? if_mtrl { get; set; }
  60. public int? mattress_width { get; set; }
  61. public int? mattress_length { get; set; }
  62. #endregion
  63. }
  64. }