add admin

This commit is contained in:
hogan
2019-01-14 18:01:01 +08:00
parent d9c0ba52fa
commit 92afa4fb6d
35 changed files with 1411 additions and 29 deletions

View File

@ -4,6 +4,9 @@ using System;
namespace FreeSql.Site.Entity
{
/// <summary>
/// 数据库实体
/// </summary>
public class DocumentContent
{
[Column(IsIdentity = true, IsPrimary = true)]
@ -64,4 +67,12 @@ namespace FreeSql.Site.Entity
/// </summary>
public string UpdateBy { get; set; }
}
/// <summary>
/// 返回实体内容
/// </summary>
public class DocumentContentView : DocumentContent
{
}
}