mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-02-05 05:19:49 +08:00
# 2022-03-14
### 1.3.9 开源社区版: 【修复】修复BaseRepository数据交互层仓储SqlWith.NoLock使用方式异常的问题。 ### 0.2.8 专业版: 【新增】增加日历签到功能。实现通过日历签到获得积分,余额。【非破坏性无缝增加功能】 【新增】增加“连续签到周期”定时任务,用于根据后台的设置,实时重置清零用户连续签到计数。 【修复】修复BaseRepository数据交互层仓储SqlWith.NoLock使用方式异常的问题。
This commit is contained in:
@@ -10,7 +10,7 @@ namespace CoreCms.Net.Configuration
|
||||
/// <summary>
|
||||
/// 配置文件格式化
|
||||
/// </summary>
|
||||
public class AppSettingsConstVars
|
||||
public static class AppSettingsConstVars
|
||||
{
|
||||
|
||||
#region 全局地址================================================================================
|
||||
@@ -24,6 +24,7 @@ namespace CoreCms.Net.Configuration
|
||||
public static readonly string AppConfigAppInterFaceUrl = AppSettingsHelper.GetContent("AppConfig", "AppInterFaceUrl");
|
||||
#endregion
|
||||
|
||||
|
||||
#region 数据库================================================================================
|
||||
/// <summary>
|
||||
/// 获取数据库连接字符串
|
||||
@@ -35,6 +36,7 @@ namespace CoreCms.Net.Configuration
|
||||
public static readonly string DbDbType = AppSettingsHelper.GetContent("ConnectionStrings", "DbType");
|
||||
#endregion
|
||||
|
||||
|
||||
#region redis================================================================================
|
||||
|
||||
/// <summary>
|
||||
@@ -53,6 +55,7 @@ namespace CoreCms.Net.Configuration
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region AOP================================================================================
|
||||
/// <summary>
|
||||
/// 事务切面开关
|
||||
@@ -68,12 +71,14 @@ namespace CoreCms.Net.Configuration
|
||||
public static readonly string JwtConfigAudience = AppSettingsHelper.GetContent("JwtConfig", "Audience");
|
||||
#endregion
|
||||
|
||||
|
||||
#region Cors跨域设置================================================================================
|
||||
public static readonly string CorsPolicyName = AppSettingsHelper.GetContent("Cors", "PolicyName");
|
||||
public static readonly bool CorsEnableAllIPs = AppSettingsHelper.GetContent("Cors", "EnableAllIPs").ObjToBool();
|
||||
public static readonly string CorsIPs = AppSettingsHelper.GetContent("Cors", "IPs");
|
||||
#endregion
|
||||
|
||||
|
||||
#region Middleware中间件================================================================================
|
||||
/// <summary>
|
||||
/// Ip限流
|
||||
@@ -114,6 +119,7 @@ namespace CoreCms.Net.Configuration
|
||||
public static readonly string PayCallBackAlipayRefundUrl = AppSettingsHelper.GetContent("PayCallBack", "AlipayRefundUrl");
|
||||
#endregion
|
||||
|
||||
|
||||
#region 易联云打印机================================================================================
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user