u_his_price.cs 828 B

123456789101112131415161718192021222324252627
  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. }
  25. }