u_factory_profitrate.cs 1016 B

12345678910111213141516171819202122232425262728293031323334353637
  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. [PK(new[] { "deptid", "bednet_or_mattress", "bednettypeid_mattresstypeid" })]
  9. public sealed class u_factory_profitrate
  10. {
  11. /// <summary>
  12. /// 部门ID
  13. /// </summary>
  14. public int? deptid { get; set; }
  15. /// <summary>
  16. /// 类型【床网.床垫】
  17. /// </summary>
  18. public byte? bednet_or_mattress { get; set; }
  19. /// <summary>
  20. /// 床垫.床网类别ID
  21. /// </summary>
  22. public int? bednettypeid_mattresstypeid { get; set; }
  23. /// <summary>
  24. /// 利润率
  25. /// </summary>
  26. public decimal? profitrate { get; set; }
  27. /// <summary>
  28. /// 建立时间
  29. /// </summary>
  30. public DateTime? createtime { get; set; }
  31. /// <summary>
  32. /// 建立人
  33. /// </summary>
  34. public string createby { get; set; }
  35. }
  36. }