using GxPress.EnumConst;
using Datory.Annotations;
using System;
namespace GxPress.Entity
{
///
/// 现在成员
///
[DataTable("tede_group_user")]
public class GroupUser : Datory.Entity
{
///
/// 小组ID
///
[DataColumn]
public int GroupId { get; set; }
///
/// 小组成员ID
///
[DataColumn]
public int UserId { get; set; }
///
/// 角色类型
///
[DataColumn]
public GroupUserRoleTyeConst GroupUserRoleId { get; set; }
///
/// 是否免打扰
///
[DataColumn]
public bool IsUDisturb { get; set; }
///
/// 用户阅读时间
///
///
[DataColumn]
public DateTime ReadDate { get; set; }
///
/// 是否加入到通讯录
///
///
[DataColumn]
public bool IsContacts { get; set; }
}
}