# 2022-03-14

### 1.3.9 开源社区版:
【修复】修复BaseRepository数据交互层仓储SqlWith.NoLock使用方式异常的问题。
### 0.2.8 专业版:
【新增】增加日历签到功能。实现通过日历签到获得积分,余额。【非破坏性无缝增加功能】
【新增】增加“连续签到周期”定时任务,用于根据后台的设置,实时重置清零用户连续签到计数。
【修复】修复BaseRepository数据交互层仓储SqlWith.NoLock使用方式异常的问题。
This commit is contained in:
JianWeie
2022-03-14 00:56:55 +08:00
parent f043d7aa0d
commit 448b0db9b8
48 changed files with 3530 additions and 10 deletions

View File

@@ -216,6 +216,11 @@ namespace CoreCms.Net.Configuration
/// </summary>
[Description("代理商提成")]
Agent = 9,
/// <summary>
/// 日历签到
/// </summary>
[Description("日历签到")]
CheckIn = 10,
}
/// <summary>
/// 用户积分变动来源类型
@@ -2880,5 +2885,28 @@ namespace CoreCms.Net.Configuration
}
#endregion
#region
/// <summary>
/// 每天签到赠送-签到赠送类型
/// </summary>
public enum CheckInCommonType
{
= 1,
= 2
}
/// <summary>
/// 清除连续签到次数
/// </summary>
public enum ContinuousCheckInPeriodType
{
= 0,
= 1,
= 2
}
#endregion
}
}