using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace DocumentServiceAPI.Model.cyDocumentModel
{
///
///
///
[SugarTable("Document_WorkRemind")]
public partial class Document_WorkRemind
{
public Document_WorkRemind(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int WorkRemindId {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ProjectName {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? ProjectId {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string WorkRemindContent {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? WorkRemindTime {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? LastUpTime {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? ToEmployeeId { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? CreatEmployeeId { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
public string CreatEmployeeName { get; set; }
}
}