using System;
using System.Collections.Generic;
using System.Text;
using GxPress.EnumConst;
using Datory;
using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 通知收件人
///
[DataTable("tede_notice_addressee")]
public class NoticeAddressee : Datory.Entity
{
///
/// 通知ID
///
[DataColumn]
public int NoticeId { 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; }
///
/// 文件夹ID
///
[DataColumn]
public int NoticeFolderId { get; set; }
///
/// 是否置顶
///
[DataColumn]
public bool IsTop { get; set; }
///
/// 是否管理员
///
[DataColumn]
public bool IsAdmin { get; set; }
///
/// 是否删除
///
[DataColumn]
public bool IsDelete { get; set; }
}
}