using System;
using System.Collections.Generic;
using System.Text;
using Datory.Annotations;
namespace GxPress.Entity.WaitHandle
{
///
/// 待办事项
///
[DataTable("tede_wait_handle")]
public class WaitHandle : Datory.Entity
{
///
/// 标题
///
[DataColumn]
public string Title { get; set; }
///
/// 内容
///
[DataColumn]
public string Content { get; set; }
///
/// 是否执行
///
[DataColumn]
public bool IsExecute { get; set; }
///
/// 闹钟时间
///
[DataColumn]
public DateTime AlarmTime { get; set; }
///
/// 提前多少分钟
///
[DataColumn]
public int Minute { get; set; }
///
/// 等级 3 高 2 中 1 低
///
[DataColumn]
public int Level { get; set; }
///
/// 标题ID
///
[DataColumn]
public int LabelId { get; set; }
///
/// 用户ID
///
[DataColumn]
public int UserId { get; set; }
///
/// 是否手动结束
///
[DataColumn]
public bool IsFinish { get; set; }
}
}