Files
tnb.server/extend/Tnb.Extend.Entitys/Entity/ScheduleEntity.cs
2023-03-24 09:37:07 +08:00

101 lines
2.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Const;
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Extend.Entitys;
/// <summary>
/// 日程安排
/// 版 本V3.2
/// 版 权引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组
/// 日 期2021-06-01.
/// </summary>
[SugarTable("EXT_SCHEDULE")]
public class ScheduleEntity : CLDEntityBase
{
/// <summary>
/// 日程标题.
/// </summary>
[SugarColumn(ColumnName = "F_TITLE")]
public string? Title { get; set; }
/// <summary>
/// 日程内容.
/// </summary>
[SugarColumn(ColumnName = "F_CONTENT")]
public string? Content { get; set; }
/// <summary>
/// 日程颜色.
/// </summary>
[SugarColumn(ColumnName = "F_COLOUR")]
public string? Colour { get; set; }
/// <summary>
/// 颜色样式.
/// </summary>
[SugarColumn(ColumnName = "F_COLOURCSS")]
public string? ColourCss { get; set; }
/// <summary>
/// 开始时间.
/// </summary>
[SugarColumn(ColumnName = "F_STARTTIME")]
public DateTime? StartTime { get; set; }
/// <summary>
/// 结束时间.
/// </summary>
[SugarColumn(ColumnName = "F_ENDTIME")]
public DateTime? EndTime { get; set; }
/// <summary>
/// 提醒设置.
/// </summary>
[SugarColumn(ColumnName = "F_EARLY")]
public int? Early { get; set; }
/// <summary>
/// APP提醒.
/// </summary>
[SugarColumn(ColumnName = "F_MAILALERT")]
public int? MailAlert { get; set; }
/// <summary>
/// 邮件提醒.
/// </summary>
[SugarColumn(ColumnName = "F_APPALERT")]
public int? AppAlert { get; set; }
/// <summary>
/// 微信提醒.
/// </summary>
[SugarColumn(ColumnName = "F_WECHATALERT")]
public int? WeChatAlert { get; set; }
/// <summary>
/// 短信提醒.
/// </summary>
[SugarColumn(ColumnName = "F_MOBILEALERT")]
public int? MobileAlert { get; set; }
/// <summary>
/// 系统提醒.
/// </summary>
[SugarColumn(ColumnName = "F_SYSTEMALERT")]
public int? SystemAlert { get; set; }
/// <summary>
/// 描述.
/// </summary>
[SugarColumn(ColumnName = "F_DESCRIPTION")]
public string? Description { get; set; }
/// <summary>
/// 排序码.
/// </summary>
[SugarColumn(ColumnName = "F_SORTCODE")]
public long? SortCode { get; set; }
}