using Hotline.Share.Enums.FlowEngine;
namespace Hotline.Share.Dtos.FlowEngine;
///
/// 办理参数
///
public class NextWorkflowDto : BasicWorkflowDto
{
public string WorkflowId { get; set; }
/////
///// 下一节点到期时间(节点期满时间)
///// 需求调整
/////
//public DateTime StepExpiredTime { get; set; }
#region 手动填入办理人信息
///
/// 真实办理人姓名(手动填写)
///
public string? RealHandlerName { get; set; }
///
/// 真实办理人电话(手动填写)
///
public string? RealHandlerPhone { get; set; }
///
/// 沟通方式(手动填写)
///
public ERealCommunicationMode? RealCommunicationMode { get; set; }
///
/// 沟通时间(手动填写)
///
public DateTime? RealCommunicationTime { get; set; }
///
/// 沟通地点(手动填写)
///
public string? RealCommunicationAddress { get; set; }
///
/// 已与市民沟通
///
public bool? RealIsContacted { get; set; }
///
/// 已与市民现场沟通
///
public bool? RealContactLocale { get; set; }
#endregion
}