mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:53:25 +08:00
# 2022-03-14
### 1.3.9 开源社区版: 【修复】修复BaseRepository数据交互层仓储SqlWith.NoLock使用方式异常的问题。 ### 0.2.8 专业版: 【新增】增加日历签到功能。实现通过日历签到获得积分,余额。【非破坏性无缝增加功能】 【新增】增加“连续签到周期”定时任务,用于根据后台的设置,实时重置清零用户连续签到计数。 【修复】修复BaseRepository数据交互层仓储SqlWith.NoLock使用方式异常的问题。
This commit is contained in:
@@ -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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user