namespace DS.WMS.Core.System.Entity;
///
/// 客户与公告关系表
///
public class SysNoticeClient
{
///
/// id
///
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 公告ID
///
public string NoticeId { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ClientId { get; set; }
///
/// Desc:
/// Default:0
/// Nullable:True
///
public bool? IsRead { get; set; }
}