using NCC.Common.Const; using SqlSugar; using System; namespace NCC.Education.Entitys { /// /// 打卡资讯 /// [SugarTable("tb_PunchInfo")] [Tenant(ClaimConst.TENANT_ID)] public class TbPunchInfoEntity { /// /// 主键 /// [SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 打卡资讯标题 /// [SugarColumn(ColumnName = "F_Title")] public string Title { get; set; } /// /// 图片 /// [SugarColumn(ColumnName = "F_Img")] public string Img { get; set; } /// /// 富文本 /// [SugarColumn(ColumnName = "F_Editors")] public string Editors { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "F_CreatorTime")] public DateTime? CreatorTime { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "F_LastModifyTime")] public DateTime? LastModifyTime { get; set; } } }