using System.Data;
using Datory.Annotations;
namespace GxPress.Entity.Missive
{
///
/// 站内信收件人
///
[DataTable("tede_missive_addressee")]
public class MissiveAddressee : Datory.Entity
{
///
/// 站内信ID
///
[DataColumn]
public int MissiveId { get; set; }
///
/// 收件人
///
[DataColumn]
public int UserId { get; set; }
///
/// 收件人姓名
///
[DataColumn]
public string UserName { get; set; }
///
/// 是否阅读
///
[DataColumn]
public bool IsRead { get; set; }
///
/// 是否管理
///
[DataColumn]
public bool IsAdmin { get; set; }
///
/// 是否删除
///
[DataColumn]
public bool IsDelete { get; set; }
}
}