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; }
|
}
|
|
}
|