u_bednetmx.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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[] { "bednetid", "bednetmxid" })]
  9. public sealed class u_bednetmx
  10. {
  11. public int? bednetmxid { get; set; }
  12. public int? bednetid { get; set; }
  13. public int? spring_qty_width { get; set; }
  14. public int? spring_qty_length { get; set; }
  15. public int? bednet_height { get; set; }
  16. public decimal? wire_mtrlid { get; set; }
  17. public int? springid { get; set; }
  18. public int? if_part { get; set; }
  19. public int? if_15strip { get; set; }
  20. public int? if_pocket_around { get; set; }
  21. public int? pocket_around_springid { get; set; }
  22. public int? pocket_around_row { get; set; }
  23. public decimal? pocket_around_wire_price { get; set; }
  24. public decimal? pocket_around_spring_cost { get; set; }
  25. public decimal? pocket_around_fabrics_cost { get; set; }
  26. public int? if_hard_around { get; set; }
  27. public int? hard_around_springid { get; set; }
  28. public int? hard_around_row { get; set; }
  29. public decimal? hard_around_wire_price { get; set; }
  30. public decimal? hard_around_mtrl_cost { get; set; }
  31. public decimal? hard_around_hr_cost { get; set; }
  32. public int? fabrics1_mtrlid { get; set; }
  33. public decimal? fabrics1_price { get; set; }
  34. public decimal? fabrics1_mtrl_cost { get; set; }
  35. public int? fabrics2_mtrlid { get; set; }
  36. public decimal? fabrics2_price { get; set; }
  37. public decimal? fabrics2_mtrl_cost { get; set; }
  38. public int? if_side_iron { get; set; }
  39. public int? side_iron_qty { get; set; }
  40. public decimal? side_iron_mtrl_cost { get; set; }
  41. public decimal? side_iron_hr_cost { get; set; }
  42. public string pocket_around_spring_cost_replace_formula { get; set; }
  43. public string pocket_around_fabrics_cost_replace_formula { get; set; }
  44. public string hard_around_mtrl_cost_replace_formula { get; set; }
  45. public string hard_around_hr_cost_replace_formula { get; set; }
  46. public string fabrics1_mtrl_cost_replace_formula { get; set; }
  47. public string fabrics2_mtrl_cost_replace_formula { get; set; }
  48. public string side_iron_mtrl_cost_replace_formula { get; set; }
  49. public string side_iron_hr_cost_replace_formula { get; set; }
  50. public string cnail_mtrl_cost_replace_formula { get; set; }
  51. public decimal? cnail_mtrl_cost { get; set; }
  52. public string cnail_hr_cost_replace_formula { get; set; }
  53. public decimal? cnail_hr_cost { get; set; }
  54. public string glue_mtrl_cost_replace_formula { get; set; }
  55. public decimal? glue_mtrl_cost { get; set; }
  56. public decimal? spring_mtrl_cost { get; set; }
  57. public decimal? spring_hr_cost { get; set; }
  58. public string spring_mtrl_cost_replace_formula { get; set; }
  59. public string spring_hr_cost_replace_formula { get; set; }
  60. public string spring_weight_replace_formula { get; set; }
  61. }
  62. }