u_softbed.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 DateTime? create_time { get; set; }
  17. public string create_by { get; set; }
  18. public string mtrlmode { get; set; }
  19. public string mtrltype { get; set; }
  20. public byte has_headboard { get; set; }
  21. public byte has_nightstand { get; set; }
  22. public byte has_bedframe { get; set; }
  23. public byte is_template { get; set; }
  24. public int template_id { get; set; }
  25. public string template_code { get; set; }
  26. public string template_name { get; set; }
  27. public decimal commission { get; set; }
  28. public decimal taxes { get; set; }
  29. public decimal other_rate { get; set; }
  30. public decimal extras_cost { get; set; }
  31. public decimal moneyrate { get; set; }
  32. public string dscrp { get; set; }
  33. public decimal costamt { get; set; }
  34. public decimal nottax_factory_cost { get; set; }
  35. public decimal nottax_dept_cost { get; set; }
  36. public decimal dept_cost { get; set; }
  37. public decimal foreign_cost { get; set; }
  38. }
  39. }