38 lines
936 B
C#
38 lines
936 B
C#
|
using Api.Framework.SDK;
|
|||
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace PointManage.Entitys
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 签到
|
|||
|
/// </summary>
|
|||
|
public class fl_plugin_pointmanage_checkin_info : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 签到平台(用户所在平台)
|
|||
|
/// </summary>
|
|||
|
public ChatType chatType { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 用户fl_member_info的id
|
|||
|
/// </summary>
|
|||
|
public long uid { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 签到的时间
|
|||
|
/// </summary>
|
|||
|
public DateTime time { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 签到累计的天数
|
|||
|
/// </summary>
|
|||
|
public int days { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 总签到数
|
|||
|
/// </summary>
|
|||
|
public long sumday { get; set; }
|
|||
|
}
|
|||
|
}
|