You cannot 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 SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Core.Entity;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知公告用户表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("sys_notice_user")]
|
|
|
|
|
[Description("通知公告用户表")]
|
|
|
|
|
public class SysNoticeUser
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知公告Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long NoticeId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 阅读时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime ReadTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态(字典 0未读 1已读)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public NoticeUserStatus ReadStatus { get; set; }
|
|
|
|
|
}
|