using JNPF.Common.Const; using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Extend.Entitys; /// /// 日程安排 /// 版 本:V3.2 /// 版 权:引迈信息技术有限公司(https://www.jnpfsoft.com) /// 作 者:JNPF开发平台组 /// 日 期:2021-06-01. /// [SugarTable("EXT_SCHEDULE")] public class ScheduleEntity : CLDEntityBase { /// /// 日程标题. /// [SugarColumn(ColumnName = "F_TITLE")] public string? Title { get; set; } /// /// 日程内容. /// [SugarColumn(ColumnName = "F_CONTENT")] public string? Content { get; set; } /// /// 日程颜色. /// [SugarColumn(ColumnName = "F_COLOUR")] public string? Colour { get; set; } /// /// 颜色样式. /// [SugarColumn(ColumnName = "F_COLOURCSS")] public string? ColourCss { get; set; } /// /// 开始时间. /// [SugarColumn(ColumnName = "F_STARTTIME")] public DateTime? StartTime { get; set; } /// /// 结束时间. /// [SugarColumn(ColumnName = "F_ENDTIME")] public DateTime? EndTime { get; set; } /// /// 提醒设置. /// [SugarColumn(ColumnName = "F_EARLY")] public int? Early { get; set; } /// /// APP提醒. /// [SugarColumn(ColumnName = "F_MAILALERT")] public int? MailAlert { get; set; } /// /// 邮件提醒. /// [SugarColumn(ColumnName = "F_APPALERT")] public int? AppAlert { get; set; } /// /// 微信提醒. /// [SugarColumn(ColumnName = "F_WECHATALERT")] public int? WeChatAlert { get; set; } /// /// 短信提醒. /// [SugarColumn(ColumnName = "F_MOBILEALERT")] public int? MobileAlert { get; set; } /// /// 系统提醒. /// [SugarColumn(ColumnName = "F_SYSTEMALERT")] public int? SystemAlert { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string? Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } }