mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:43:26 +08:00
### 1.3.9 开源社区版: 【修复】修复BaseRepository数据交互层仓储SqlWith.NoLock使用方式异常的问题。 ### 0.2.8 专业版: 【新增】增加日历签到功能。实现通过日历签到获得积分,余额。【非破坏性无缝增加功能】 【新增】增加“连续签到周期”定时任务,用于根据后台的设置,实时重置清零用户连续签到计数。 【修复】修复BaseRepository数据交互层仓储SqlWith.NoLock使用方式异常的问题。
49 lines
972 B
C#
49 lines
972 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CoreCms.Net.Model.Entities;
|
|
|
|
namespace CoreCms.Net.Model.FromBody
|
|
{
|
|
/// <summary>
|
|
/// 保存累计签到规则
|
|
/// </summary>
|
|
public class FMDoSaveCumulativeCheckInRules
|
|
{
|
|
public List<CoreCmsCumulativeCheckInRules> entity { set; get; }
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 保存连续签到规则
|
|
/// </summary>
|
|
public class FMDoSaveContinuousCheckInRules
|
|
{
|
|
public List<CoreCmsContinuousCheckInRules> entity { set; get; }
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 前端用户签到提交
|
|
/// </summary>
|
|
public class FMDoUserCheckIn
|
|
{
|
|
|
|
public DateTime date { set; get; }
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 前端获取用户签到数据
|
|
/// </summary>
|
|
public class FMGetUserCheckInByMonth
|
|
{
|
|
public int year { set; get; }
|
|
public int month { set; get; }
|
|
}
|
|
|
|
}
|