|
@@ -11,7 +11,7 @@ using XF.Utility.EnumExtensions;
|
|
|
|
|
|
namespace Hotline.Share.Dtos.Order
|
|
|
{
|
|
|
- public record CanLinkCallRecordOrderVisitDto:PagedKeywordRequest
|
|
|
+ public record CanLinkCallRecordOrderVisitDto : PagedKeywordRequest
|
|
|
{
|
|
|
|
|
|
}
|
|
@@ -53,9 +53,9 @@ namespace Hotline.Share.Dtos.Order
|
|
|
/// 是否省工单
|
|
|
/// </summary>
|
|
|
public bool? IsProvince { get; set; }
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- public record VisitJudgeQueryReq:PagedKeywordRequest
|
|
|
+ public record VisitJudgeQueryReq : PagedKeywordRequest
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// 工单编号
|
|
@@ -77,17 +77,17 @@ namespace Hotline.Share.Dtos.Order
|
|
|
/// <summary>
|
|
|
/// 受理类型
|
|
|
/// </summary>
|
|
|
- public List<string> AcceptTypes { get; set; } = new();
|
|
|
+ public string AcceptType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 热点分类
|
|
|
/// </summary>
|
|
|
- public List<string> HotspotIds { get; set; } = new();
|
|
|
+ public string Hotspot { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 接办部门
|
|
|
/// </summary>
|
|
|
- public List<string> OrgCodes { get; set; } = new();
|
|
|
+ public string OrgName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 受理坐席名字或工号
|
|
@@ -505,7 +505,7 @@ namespace Hotline.Share.Dtos.Order
|
|
|
public EJudgeState? JudgeState { get; set; }
|
|
|
|
|
|
public string? JudgeStateText => JudgeState?.GetDescription() ?? string.Empty;
|
|
|
-
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 评判意见
|
|
|
/// </summary>
|
|
@@ -564,15 +564,15 @@ namespace Hotline.Share.Dtos.Order
|
|
|
|
|
|
public string OrgProcessingResultsText => !(OrgProcessingResults is null) ? OrgProcessingResults.Value : "";
|
|
|
|
|
|
- /// <summary>
|
|
|
- /// 不满意原因
|
|
|
- /// </summary>
|
|
|
- public List<Kv>? OrgNoSatisfiedReason { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 不满意原因
|
|
|
+ /// </summary>
|
|
|
+ public List<Kv>? OrgNoSatisfiedReason { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 不满意原因字符串
|
|
|
/// </summary>
|
|
|
- public string OrgNoSatisfiedReasonText => OrgNoSatisfiedReason != null ? string.Join(',', OrgNoSatisfiedReason.Select(d=>d.Value)) : "";
|
|
|
+ public string OrgNoSatisfiedReasonText => OrgNoSatisfiedReason != null ? string.Join(',', OrgNoSatisfiedReason.Select(d => d.Value)) : "";
|
|
|
|
|
|
/// <summary>
|
|
|
/// 部门办件态度
|
|
@@ -740,7 +740,7 @@ namespace Hotline.Share.Dtos.Order
|
|
|
/// 回访内容
|
|
|
/// </summary>
|
|
|
public string? VisitContent { get; set; }
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|