You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Common.Enum;
|
|
|
|
|
using Entity.Base;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace Entity.DbModel.System.SysBaseObject
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 系统通知公告用户表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("sys_notice_user")]
|
|
|
|
|
public partial class SysNoticeUser : EntityBaseId
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知公告Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "notice_id")]
|
|
|
|
|
public long NoticeId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知公告
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Navigate(NavigateType.OneToOne, nameof(NoticeId))]
|
|
|
|
|
[SugarColumn(ColumnName = "sys_notice")]
|
|
|
|
|
public SysNotice SysNotice { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "user_id")]
|
|
|
|
|
public long UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 阅读时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "read_time")]
|
|
|
|
|
public DateTime? ReadTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态(0未读 1已读)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "状态(0未读 1已读)", ColumnName = "read_status")]
|
|
|
|
|
public NoticeUserStatusEnum ReadStatus { get; set; } = NoticeUserStatusEnum.UNREAD;
|
|
|
|
|
}
|
|
|
|
|
}
|