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.
70 lines
1.5 KiB
C#
70 lines
1.5 KiB
C#
2 years ago
|
using DS.Module.Core.Data;
|
||
|
|
||
|
namespace DS.WMS.Core.System.Entity;
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
[SqlSugar.SugarTable("SysNotice")]
|
||
|
public class SysNotice:BaseModel<string>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 标题
|
||
|
/// </summary>
|
||
|
public string Title { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 类型
|
||
|
/// </summary>
|
||
|
public string Type { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 内容
|
||
|
/// </summary>
|
||
|
public string Content { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 优先级
|
||
|
/// </summary>
|
||
|
public string Level { get; set; } = "L";
|
||
|
/// <summary>
|
||
|
/// Desc:发送状态 0 未发布 1 已发布 2 已撤销
|
||
|
/// Default:0
|
||
|
/// Nullable:True
|
||
|
/// </summary>
|
||
|
public int SendStatus { get; set; } =0;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Desc:截至日期
|
||
|
/// Default:
|
||
|
/// Nullable:True
|
||
|
/// </summary>
|
||
|
public DateTime? EndTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Desc:发布日期
|
||
|
/// Default:
|
||
|
/// Nullable:True
|
||
|
/// </summary>
|
||
|
public DateTime? SendTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Desc:撤销日期
|
||
|
/// Default:
|
||
|
/// Nullable:True
|
||
|
/// </summary>
|
||
|
public DateTime? CancelTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Desc:状态 0 正常 1 删除
|
||
|
/// Default:0
|
||
|
/// Nullable:False
|
||
|
/// </summary>
|
||
|
public short Status { get; set; } =0;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 租户Id
|
||
|
/// </summary>
|
||
|
public string TenantId { get; set; }
|
||
|
}
|