ExportOfilmcmk.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using AutoMapper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Text;
  6. namespace DllEapEntity.Dtos
  7. {
  8. [AutoMap(typeof(Ofilmcmk))]
  9. public class ExportOfilmcmk
  10. {
  11. [Description("课别") ]
  12. public string Classes { get; set; }
  13. [Description("楼层")]
  14. public string floor { get; set; }
  15. [Description("客户")]
  16. public string customer { get; set; }
  17. [Description("设备ID")]
  18. public string macID { get; set; }
  19. [Description("位置")]
  20. public string position { get; set; }
  21. [Description("X")]
  22. public double XCmk { get; set; }
  23. [Description("Y")]
  24. public double YCmk { get; set; }
  25. [Description("T")]
  26. public double TCmk { get; set; }
  27. [Description("X")]
  28. public double XP { get; set; }
  29. [Description("Y")]
  30. public double YP { get; set; }
  31. [Description("T")]
  32. public double TP { get; set; }
  33. [Description("附件")]
  34. public string enclosureSrc { get; set; }
  35. [Description("维护人")]
  36. public string ModName { get; set; }
  37. [Description("维护日期")]
  38. public DateTime ModTime { get; set; }
  39. [Description("下次取值日期")]
  40. public DateTime NextTime { get; set; }
  41. }
  42. }