|
@@ -5,6 +5,7 @@ using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
using System.Threading.Tasks;
|
|
|
+using XF.Utility.EnumExtensions;
|
|
|
|
|
|
namespace Hotline.Share.Dtos.Order
|
|
|
{
|
|
@@ -61,4 +62,98 @@ namespace Hotline.Share.Dtos.Order
|
|
|
/// </summary>
|
|
|
public List<FileDto> Files { get; set; } = new();
|
|
|
}
|
|
|
+
|
|
|
+ public class OrderScreenListDto
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 工单编号
|
|
|
+ /// </summary>
|
|
|
+ public string No { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 工单id
|
|
|
+ /// </summary>
|
|
|
+ public string VisitId { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 工单id
|
|
|
+ /// </summary>
|
|
|
+ public string OrderId { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 回访
|
|
|
+ /// </summary>
|
|
|
+ public OrderVisitDto Visit { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 工单
|
|
|
+ /// </summary>
|
|
|
+ public OrderDto Order { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 甄别申请类型id
|
|
|
+ /// </summary>
|
|
|
+ public string? TypeDicId { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 甄别申请类型名称
|
|
|
+ /// </summary>
|
|
|
+ public string? TypeDicName { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 甄别申请原因
|
|
|
+ /// </summary>
|
|
|
+ public string? Content { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 甄别申请回复
|
|
|
+ /// </summary>
|
|
|
+ public string? ReplyContent { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 甄别截至申请时间
|
|
|
+ /// </summary>
|
|
|
+ public DateTime? ApplyEndTime { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 甄别申请状态
|
|
|
+ /// </summary>
|
|
|
+ public EScreenStatus? Status { get; set; }
|
|
|
+
|
|
|
+ public string StatusText => Status.GetDescription();
|
|
|
+
|
|
|
+ public DateTime? LastModificationTime { get; set; }
|
|
|
+
|
|
|
+ public bool IsDeleted { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 删除时间
|
|
|
+ /// </summary>
|
|
|
+ public DateTime? DeletionTime { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 创建时间
|
|
|
+ /// </summary>
|
|
|
+ public DateTime CreationTime { get; set; }
|
|
|
+
|
|
|
+ public string Id { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 组织Id
|
|
|
+ /// </summary>
|
|
|
+ public string? CreatorOrgId { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+ public string? CreatorOrgName { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 创建人
|
|
|
+ /// </summary>
|
|
|
+ public string? CreatorId { get; set; }
|
|
|
+
|
|
|
+ public string? CreatorName { get; set; }
|
|
|
+ }
|
|
|
}
|