using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hotline.Settings.TimeLimits
{
public class TimeLimitBaseDataConsts
{
///
/// 受理类型
///
public const string AcceptType = "AcceptType";
///
/// 热点分类
///
public const string HotPots = "HotPots";
///
/// 推送分类
///
public const string PushType = "PushType";
///
/// 来源渠道
///
public const string SourceChannel = "SourceChannel";
///
/// 来电人身份
///
public const string IdentityType = "IdentityType";
///
/// 工单类型
///
public const string OrderType = "OrderType";
///
/// 证件类型
///
public const string CertType = "CertType";
///
/// 紧急程度
///
public const string EmergencyLevel = "EmergencyLevel";
///
/// 默认参数
///
public const string DefaultTime = "DefaultTime";
}
}