using GxPress.EnumConst;
using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 通知收件人
///
[DataTable("tede_addressee")]
public class Addressee : Datory.Entity
{
///
/// 来源ID
///
[DataColumn]
public int SourceId { get; set; }
///
/// 来源类型
///
[DataColumn]
public int SourceType { get; set; }
///
/// 收件人
///
[DataColumn]
public int UserId { get; set; }
///
/// 收件人姓名
///
[DataColumn]
public string UserName { get; set; }
///
/// 是否阅读
///
[DataColumn]
public bool IsRead { get; set; }
///
/// 手机人状态 1 接收 2 草稿
///
[DataColumn]
public NoticeTypeConst NoticeAddresseeType { get; set; }
///
/// 是否置顶
///
[DataColumn]
public bool IsTop { get; set; }
///
/// 是否管理员
///
[DataColumn]
public bool IsAdmin { get; set; }
///
/// 是否删除
///
[DataColumn]
public bool IsDelete { get; set; }
}
}