using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 用户签到表
///
public partial class UserSign
{
///
/// 主键id
///
public uint Id { get; set; }
///
/// 用户id
///
public uint UserId { get; set; }
///
/// 签到日期
///
public string SignDate { get; set; } = null!;
///
/// 签到当月天数
///
public byte SignDay { get; set; }
///
/// 连续签到天数
///
public uint Days { get; set; }
///
/// 签到月份
///
public int? Month { get; set; }
///
/// 签到年份
///
public int? Year { get; set; }
///
/// 签到数量
///
public int Num { get; set; }
///
/// 签到时间
///
public uint CreateTime { get; set; }
///
/// 更新时间
///
public uint UpdateTime { get; set; }
///
/// 月签到还是累计签到
///
public sbyte SignType { get; set; }
}