新增读取文档帮助

This commit is contained in:
hogan
2019-01-28 17:30:59 +08:00
parent 054f85de36
commit 0d427e0b8a
139 changed files with 4384 additions and 1146 deletions

View File

@ -7,16 +7,16 @@ namespace FreeSql.Site.Entity
public class BaseEntity
{
[Column(IsIdentity = true, IsPrimary = true)]
public int ID { get; set; }
public int ID { get; set; } = 0;
/// <summary>
/// 状态
/// </summary>
public int Status { get; set; }
public int Status { get; set; } = 1;
public DateTime? CreateDt { get; set; }
public DateTime? CreateDt { get; set; } = DateTime.Now;
public string CreateBy { get; set; }
public string CreateBy { get; set; } = "admin";
}
}