using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Resource
{
[SugarTable("Res_Memo")]
public class Res_MemoInfo : EntityBase
{
///
/// 部门Id
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int DepartmentId { get; set; }
///
/// 阅读级别,1:个人,2:部门,3:公司
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int ReadLevel { get; set; }
///
/// 标题
///
[SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
public string Title { get; set; }
///
/// 摘要
///
[SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
public string Abstracts { get; set; }
///
/// MarkDown文件路径
///
[SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(200)")]
public string MDFilePath { get; set; }
///
/// 最后更新时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
public DateTime LastedEditDt { get; set; }
///
/// 最后提交用户
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int LastedEditor { get; set; }
}
}