mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
新增首页、文档页的静态页面
This commit is contained in:
@ -1,8 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace FreeSql.Site.Entity
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
}
|
||||
}
|
23
Examples/website/FreeSql.Site.Entity/DocumentType.cs
Normal file
23
Examples/website/FreeSql.Site.Entity/DocumentType.cs
Normal file
@ -0,0 +1,23 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace FreeSql.Site.Entity
|
||||
{
|
||||
public class DocumentType
|
||||
{
|
||||
[Column(IsIdentity = true, IsPrimary = true)]
|
||||
public int ID { get; set; }
|
||||
|
||||
public string TypeName { get; set; }
|
||||
|
||||
public int? UpID { get; set; }
|
||||
|
||||
public DateTime? CreateDt { get; set; }
|
||||
|
||||
public string CreateBy { get; set; }
|
||||
|
||||
public DateTime? UpdateDt { get; set; }
|
||||
|
||||
public string UpdateBy { get; set; }
|
||||
}
|
||||
}
|
@ -4,4 +4,8 @@
|
||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\FreeSql\FreeSql.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
Reference in New Issue
Block a user