ExcelContent.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. using Hotline.Share.Enums.Order;
  2. using MiniExcelLibs.Attributes;
  3. namespace Hotline.Import
  4. {
  5. public class ExcelContent
  6. {
  7. [ExcelColumnName("编号")]
  8. public string ExternalId { get; set; }
  9. [ExcelColumnName("标题")]
  10. public string Title { get; set; }
  11. [ExcelColumnName("受理时间")]
  12. public DateTime StartTime { get; set; }
  13. [ExcelColumnName("内容")]
  14. public string Content { get; set; }
  15. [ExcelColumnName("受理类型编号(字典值)")]
  16. public string AcceptTypeCode { get; set; }
  17. [ExcelColumnName("受理类型")]
  18. public string AcceptType { get; set; }
  19. [ExcelColumnName("热点全称")]
  20. public string HotspotSpliceName { get; set; }
  21. [ExcelColumnName("热点名称")]
  22. public string HotspotName { get; set; }
  23. [ExcelColumnName("热点编码")]
  24. public string HotspotId { get; set; }
  25. [ExcelColumnName("事件全称")]
  26. public string EventCategorySpliceName { get; set; }
  27. [ExcelColumnName("事件名称")]
  28. public string EventCategoryName { get; set; }
  29. [ExcelColumnName("事件编码")]
  30. public string EventCategoryId { get; set; }
  31. [ExcelColumnName("地址编码")]
  32. public string AreaCode { get; set; }
  33. [ExcelColumnName("市")]
  34. public string City { get; set; }
  35. [ExcelColumnName("区")]
  36. public string County { get; set; }
  37. [ExcelColumnName("详细地址")]
  38. public string Address { get; set; }
  39. [ExcelColumnName("办结时间")]
  40. public DateTime ActualHandleTime { get; set; }
  41. [ExcelColumnName("办结意见")]
  42. public string ActualOpinion { get; set; }
  43. [ExcelColumnName("办结部门编号")]
  44. public string ActualHandleOrgCode { get; set; }
  45. [ExcelColumnName("办结部门")]
  46. public string ActualHandleOrgName { get; set; }
  47. [ExcelColumnName("联系电话")]
  48. public string Contact { get; set; }
  49. [ExcelColumnName("来电人身份")]
  50. public EIdentityType IdentityType { get; set; }
  51. [ExcelColumnName("工单状态")]
  52. public EOrderStatus Status { get; set; }
  53. [ExcelColumnName("来源")]
  54. public ESource Source { get; set; }
  55. }
  56. }