移动系统liao
2025-02-17 557c2711a3e103ebc3d0492344eca9730d5e92b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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; }
    }
 
}