using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace cylsg.Model.ECTEModel { /// /// /// [SugarTable("OA_WorkReminder")] public class OA_WorkReminder { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Keyid", IsPrimaryKey = true, IsIdentity = true)] public int Keyid { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "FirmId")] public Guid FirmId { get; set; } = new Guid("88B49967-D590-452C-93C6-0049A75FA5FF"); /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Content")] public string Content { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Remender")] public string? Remender { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "RemenderObject")] public string? RemenderObject { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "RemenderType")] public int? RemenderType { get; set; } = 0; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "RemenderDept")] public string? RemenderDept { get; set; } = ""; /// /// 备 注:反馈时间 /// 默认值: /// [SugarColumn(ColumnName = "RemenderTime")] public DateTime? RemenderTime { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Remark")] public string? Remark { get; set; } = ""; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "RemenderDelState")] public int? RemenderDelState { get; set; } = 0; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "RemenderObjectDelState")] public int? RemenderObjectDelState { get; set; } = 0; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "IsFinish")] public int? IsFinish { get; set; } = 0; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "FeedBackContent")] public string? FeedBackContent { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "RemindState")] public int? RemindState { get; set; } = 0; } }