using Hotline.Settings;
namespace Hotline.Caching.Interfaces
{
public interface ISystemSettingCacheManager
{
SystemSetting? GetSetting(string code);
void DelSystemSetting(string code);
int NoConnectByeTimes { get; }
int EffectiveTimes { get; }
int ConnectByeTimes { get; }
int CallInOverConnRingTime { get; }
int SeatChaoTime { get; }
int RingTimes { get; }
string RecordPrefix { get; }
///
/// 中心直办件默认回访人Id
/// 根据禅道 自贡需求 Id_361, 第一条, 3小条需求;
///
string DefaultVisitEmployeeId { get; }
int FixedQueryCount { get; }
///
/// 自动发布中心直办归档工单
///
bool AutomaticPublishOrder { get; }
///
/// 取消发布功能总开关
///
bool CancelPublishOrderEnabled { get; }
///
/// 保存回访详情时发送延迟消息同步通话记录
/// 如果回访通话记录有多条, 需要关联通话时长最长的那条
///
int VisitCallDelaySecond { get; }
///
/// 发送回访短信后等候市民回复短信的时间
/// 如果超过这个时间就更新回访为默认满意
///
int DefaultVisitSmsDelaySecond { get; }
///
/// 通话记录同步时不推送省上的时间(默认:2024/11/19 18:08)
///
DateTime CallSyncUnPushDateTime { get; }
///
/// 即将超期列表调用方法的版本(有优化办法和老版本)
///
int GetAboutToExpireVersion { get; }
///
/// 工单开始办理如果获取的通话记录是呼出并且录音文件是空就不推送通话记录
///
bool OrderStartHandlerPushCallIsNull { get; }
///
/// 微信小程序Secret
///
string WxOpenAppSecret { get; }
///
/// 微信小程序OpenId
///
string WxOpenAppId { get; }
///
/// 文件服务器地址
///
string FileServerUrl { get; }
///
/// 文件下载接口
///
string FileDownloadApi { get; }
///
/// 小程序Banner集合
///
string AppBanner { get; }
///
/// 网格员回复等待时间(单位:小时)
/// 超过该时间自动退回工单
///
double OvertimeBack { get; }
///
/// 天阙服务AppKey|AppSecret
///
string TianQueAppKeySecret { get; }
///
/// 天阙推送受理信息接口Url
///
string TianQuanPostAcceptInfoApi { get; }
bool Snapshot { get; }
}
}