u_his_price.cs 624 B

1234567891011121314151617181920212223
  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. }
  21. }