|
@@ -1,49 +1,56 @@
|
|
using Hotline.Share.Enums.Order;
|
|
using Hotline.Share.Enums.Order;
|
|
using MiniExcelLibs.Attributes;
|
|
using MiniExcelLibs.Attributes;
|
|
|
|
+using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace Hotline.Import
|
|
namespace Hotline.Import
|
|
{
|
|
{
|
|
public class ExcelContent
|
|
public class ExcelContent
|
|
{
|
|
{
|
|
|
|
+ [ExcelColumnName("来源")]
|
|
|
|
+ public string Source { get; set; }
|
|
|
|
+
|
|
[ExcelColumnName("编号")]
|
|
[ExcelColumnName("编号")]
|
|
public string ExternalId { get; set; }
|
|
public string ExternalId { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("标题")]
|
|
|
|
- public string Title { get; set; }
|
|
|
|
-
|
|
|
|
[ExcelColumnName("受理时间")]
|
|
[ExcelColumnName("受理时间")]
|
|
public DateTime StartTime { get; set; }
|
|
public DateTime StartTime { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("内容")]
|
|
|
|
- public string Content { get; set; }
|
|
|
|
-
|
|
|
|
- [ExcelColumnName("受理类型编号(字典值)")]
|
|
|
|
- public string AcceptTypeCode { get; set; }
|
|
|
|
|
|
+ [ExcelColumnName("标题")]
|
|
|
|
+ public string Title { get; set; }
|
|
|
|
|
|
|
|
+ [ExcelColumnName("期满时间")]
|
|
|
|
+ public DateTime ExpiredTime { get; set; }
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 一级部门名称
|
|
|
|
+ /// </summary>
|
|
|
|
+ [ExcelColumnName("一级部门")]
|
|
|
|
+ public string? OrgLevelOneName { get; set; }
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 二级部门名称
|
|
|
|
+ /// </summary>
|
|
|
|
+ [ExcelColumnName("二级部门")]
|
|
|
|
+ public string? OrgLevelTwoName { get; set; }
|
|
|
|
+
|
|
|
|
+ [ExcelColumnName("承办部门")]
|
|
|
|
+ public string ActualHandleOrgName { get; set; }
|
|
|
|
+ [ExcelColumnName("办结时间")]
|
|
|
|
+ public DateTime ActualHandleTime { get; set; }
|
|
[ExcelColumnName("受理类型")]
|
|
[ExcelColumnName("受理类型")]
|
|
public string AcceptType { get; set; }
|
|
public string AcceptType { get; set; }
|
|
|
|
+ [ExcelColumnName("一级热点")]
|
|
|
|
+ public string HotspotNameOne { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("热点全称")]
|
|
|
|
- public string HotspotSpliceName { get; set; }
|
|
|
|
-
|
|
|
|
- [ExcelColumnName("热点名称")]
|
|
|
|
- public string HotspotName { get; set; }
|
|
|
|
|
|
+ [ExcelColumnName("二级热点")]
|
|
|
|
+ public string HotspotNameTwo { get; set; }
|
|
|
|
+ [ExcelColumnName("三级热点")]
|
|
|
|
+ public string HotspotNameThree { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("热点编码")]
|
|
|
|
- public string HotspotId { get; set; }
|
|
|
|
|
|
+ [ExcelColumnName("四级热点")]
|
|
|
|
+ public string HotspotNameFour { get; set;}
|
|
|
|
|
|
- [ExcelColumnName("事件全称")]
|
|
|
|
- public string EventCategorySpliceName { get; set; }
|
|
|
|
-
|
|
|
|
- [ExcelColumnName("事件名称")]
|
|
|
|
- public string EventCategoryName { get; set; }
|
|
|
|
-
|
|
|
|
- [ExcelColumnName("事件编码")]
|
|
|
|
- public string EventCategoryId { get; set; }
|
|
|
|
-
|
|
|
|
- [ExcelColumnName("地址编码")]
|
|
|
|
- public string AreaCode { get; set; }
|
|
|
|
|
|
+ [ExcelColumnName("五级热点")]
|
|
|
|
+ public string HotspotNameFive { get; set; }
|
|
|
|
|
|
[ExcelColumnName("市")]
|
|
[ExcelColumnName("市")]
|
|
public string City { get; set; }
|
|
public string City { get; set; }
|
|
@@ -51,31 +58,28 @@ namespace Hotline.Import
|
|
[ExcelColumnName("区")]
|
|
[ExcelColumnName("区")]
|
|
public string County { get; set; }
|
|
public string County { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("详细地址")]
|
|
|
|
- public string Address { get; set; }
|
|
|
|
-
|
|
|
|
- [ExcelColumnName("办结时间")]
|
|
|
|
- public DateTime ActualHandleTime { get; set; }
|
|
|
|
-
|
|
|
|
- [ExcelColumnName("办结意见")]
|
|
|
|
- public string ActualOpinion { get; set; }
|
|
|
|
|
|
+ [ExcelColumnName("乡镇")]
|
|
|
|
+ public string? Town { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("办结部门编号")]
|
|
|
|
- public string ActualHandleOrgCode { get; set; }
|
|
|
|
|
|
+ [ExcelColumnName("事发地址")]
|
|
|
|
+ public string Street { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("办结部门")]
|
|
|
|
- public string ActualHandleOrgName { get; set; }
|
|
|
|
|
|
+ [ExcelColumnName("来电人姓名")]
|
|
|
|
+ public string FromName { get; set; }
|
|
|
|
|
|
[ExcelColumnName("联系电话")]
|
|
[ExcelColumnName("联系电话")]
|
|
public string Contact { get; set; }
|
|
public string Contact { get; set; }
|
|
|
|
+
|
|
|
|
+ [ExcelColumnName("重办次数")]
|
|
|
|
+ public int ReTransactNum { get; set; }
|
|
|
|
+ [ExcelColumnName("信件满意度")]
|
|
|
|
+ public string VisitResult { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("来电人身份")]
|
|
|
|
- public EIdentityType IdentityType { get; set; }
|
|
|
|
|
|
+ [ExcelColumnName("受理内容")]
|
|
|
|
+ public string Content { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("工单状态")]
|
|
|
|
- public EOrderStatus Status { get; set; }
|
|
|
|
|
|
+ [ExcelColumnName("承办意见")]
|
|
|
|
+ public string ActualOpinion { get; set; }
|
|
|
|
|
|
- [ExcelColumnName("来源")]
|
|
|
|
- public ESource Source { get; set; }
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|