namespace DS.WMS.Core.System.Dtos;
///
///
///
public class ClientNoticeViewModel
{
public long Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 类型
///
public string Type { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 优先级
///
public string Level { get; set; }
///
/// Desc:截至日期
/// Default:
/// Nullable:True
///
public DateTime? EndTime { get; set; }
///
/// Desc:发布日期
/// Default:
/// Nullable:True
///
public DateTime? SendTime { get; set; }
///
///
///
public bool IsRead { get; set; }
}