using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.System
{
///
/// 消息可读员工
///
public class Sys_MessageReadAuth:EntityBase
{
///
/// 消息Id
///
[SugarColumn(IsNullable = true,ColumnDataType = "int")]
public int MsgId { get; set; }
///
/// 可读用户Id
///
[SugarColumn(IsNullable = true,ColumnDataType = "int")]
public int ReadableUId { get; set; }
///
/// 是否已读
/// 0 未读
/// 1 已读
///
[SugarColumn(IsNullable = true,ColumnDataType = "int")]
public int IsRead { get; set; }
///
/// 阅读时间
///
[SugarColumn(IsNullable = true,ColumnDataType = "datetime")]
public DateTime ReadTime { get; set; }
}
}