using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hotline.Share.Mq { public partial class EventNames { #region 推送 /// /// 热线工单流程开启 /// public const string HotlineOrderFlowStarted = "hotline.order.flow.started"; /// /// 热线工单办理 /// public const string HotlineOrderFlowHandled = "hotline.order.flow.handled"; /// /// 撤回 /// public const string HotlineOrderFlowRecalled = "hotline.order.flow.recalled"; /// /// 退回 /// public const string HotlineOrderFlowPrevious = "hotline.order.flow.previous"; /// /// 热线工单期满时间变更 /// public const string HotlineOrderExpiredTimeUpdate = "hotline.order.expiredtime.update"; /// /// 热线工单归档---服务工单结果 /// public const string HotlineOrderFiled = "hotline.order.filed"; /// /// 回访完成(推省上) /// public const string HotlineOrderVisited = "hotline.order.visited"; /// /// 回访完成(回访全量数据(Web\WeChat\App)) /// public const string HotlineOrderVisitedWeb = "hotline.order.visited.web"; /// /// 甄别申请 /// public const string HotlineOrderScreenApply = "hotline.order.screen.apply"; /// /// 甄别申请完成---甄别通过 /// public const string HotlineOrderScreenApplyed = "hotline.order.screen.applyed"; /// /// 督办过程 /// public const string HotlineOrderSuperviseCourse = "hotline.order.supervise.course"; /// /// 督办结果 /// public const string HotlineOrderSuperviseResult = "hotline.order.supervise.result"; /// /// 催办通知 /// public const string HotlineOrderUrgeInform = "hotline.order.urge.inform"; /// /// 工单退回申请 /// public const string HotlineOrderSendBackApplyed = "hotline.order.sendback.applyed"; /// /// 延期申请 /// public const string HotlineOrderApplyDelay = "hotline.order.apply.delay"; /// /// 发布 /// public const string HotlineOrderPublishOrder = "hotline.order.publish.order"; /// /// 市州工单互转 /// public const string HotlineOrderTranspondCity = "hotline.order.transpond.city"; /// /// 政民互动公开 /// public const string HotlineOrderProvinceZmhd = "hotline.order.province.zmhd"; #endregion } }