mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
新增文档分类列表树
This commit is contained in:
22
Examples/website/FreeSql.Site.Entity/BaseEntity.cs
Normal file
22
Examples/website/FreeSql.Site.Entity/BaseEntity.cs
Normal file
@ -0,0 +1,22 @@
|
||||
//using FreeSql.DataAnnotations;
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace FreeSql.Site.Entity
|
||||
{
|
||||
public class BaseEntity
|
||||
{
|
||||
[Column(IsIdentity = true, IsPrimary = true)]
|
||||
public int ID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 状态
|
||||
/// </summary>
|
||||
public int Status { get; set; }
|
||||
|
||||
public DateTime? CreateDt { get; set; }
|
||||
|
||||
public string CreateBy { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user