using NCC.Common.Const; using SqlSugar; using System; namespace NCC.Education.Entitys { /// /// 连续打卡设定 /// [SugarTable("tb_BothSetting")] [Tenant(ClaimConst.TENANT_ID)] public class TbBothSettingEntity { /// /// 主键 /// [SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 连续天数 /// [SugarColumn(ColumnName = "F_BothNumber")] public int? BothNumber { get; set; } /// /// 赠送积分数 /// [SugarColumn(ColumnName = "F_Num")] public int? Num { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "F_CreatorTime")] public DateTime? CreatorTime { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "F_LastModifyTime")] public DateTime? LastModifyTime { get; set; } } }