u_his_price.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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. public sealed class u_his_price
  9. {
  10. public int? bednetid_mattressid { get; set; }
  11. /// <summary>
  12. /// 1: 床垫报价,0:床网报价
  13. /// </summary>
  14. public int? typeid { get; set; }
  15. public DateTime? cmpdate { get; set; }
  16. public string cmpemp { get; set; }
  17. public decimal? nottax_dept_cost { get; set; }
  18. public decimal? dept_cost { get; set; }
  19. public decimal? foreign_cost { get; set; }
  20. public decimal? dannum_cost1 { get; set; }
  21. public decimal? dannum_cost2 { get; set; }
  22. public decimal? dannum_cost3 { get; set; }
  23. public decimal? dannum_cost4 { get; set; }
  24. public decimal? dijia_cost1 { get; set; }
  25. public decimal? dijia_cost2 { get; set; }
  26. public decimal? dijia_cost3 { get; set; }
  27. public decimal? dijia_cost4 { get; set; }
  28. public decimal? fob { get; set; }
  29. public decimal? taxrate { get; set; }
  30. public decimal? commission { get; set; }
  31. public string cabinet_type { get; set; }
  32. }
  33. }