u_softbed.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace JLHHJSvr.Com.Model
  8. {
  9. [PK(new[] { "softbed_id" })]
  10. public class u_softbed
  11. {
  12. public int softbed_id { get; set; }
  13. public string softbed_code { get; set; }
  14. public string softbed_name { get; set; }
  15. public int deptid { get; set; }
  16. public byte flag { get; set; }
  17. public DateTime? create_date { get; set; }
  18. public string create_emp { get; set; }
  19. public string mtrlmode { get; set; }
  20. public string mtrltype { get; set; }
  21. public byte has_headboard { get; set; }
  22. public byte has_nightstand { get; set; }
  23. public byte has_bedframe { get; set; }
  24. public byte is_template { get; set; }
  25. public int template_id { get; set; }
  26. public string template_code { get; set; }
  27. public string template_name { get; set; }
  28. public decimal commission { get; set; }
  29. public decimal taxes { get; set; }
  30. public decimal other_rate { get; set; }
  31. public decimal extras_cost { get; set; }
  32. public decimal moneyrate { get; set; }
  33. public string dscrp { get; set; }
  34. public decimal costamt { get; set; }
  35. public decimal nottax_factory_cost { get; set; }
  36. public decimal nottax_dept_cost { get; set; }
  37. public decimal dept_cost { get; set; }
  38. public decimal foreign_cost { get; set; }
  39. public DateTime? audit_date { get; set; }
  40. public string audit_emp { get; set; }
  41. public DateTime? update_date { get; set; }
  42. public string update_emp { get; set; }
  43. public List<u_softbed_mx> mxList { get; set; }
  44. }
  45. }